-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintroduction.css
58 lines (50 loc) · 996 Bytes
/
introduction.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
@font-face {
font-family: Sixers;
src: url(/fonts/sixers.ttf);
}
@font-face {
font-family: TT Commons;
src: url(/fonts/ttcommons-regular.ttf);
}
html, body {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
.background_image {
background-image: url(/images/iverson.jpg);
background-position: 100% 70%;
background-size: cover;
position: fixed;
display: block;
width: 100%;
height: 100%;
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
transform: scale(1.05);
}
.container {
user-select: none;
font-family: TT Commons;
box-shadow: 0px 0px 30px 5px;
position: fixed;
display: inline-block;
text-align: center;
margin: 250px 250px 250px 250px;
padding: 25px;
background: rgba(255, 255, 255, 0.85);
}
.question {
font-size: 48px;
}
.titleText {
font-family: Sixers;
letter-spacing: 0.1em;
text-indent: 0.1em;
color: #ED174C;
}
.blurb {
font-size: 22px;
}