-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (69 loc) · 1.56 KB
/
style.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
body {
line-height: 1;
font: 13px/24px "Open Sans", Helvetica, Arial, sans-serif;
background: #ffffff;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%;
-webkit-text-stroke: 1px black;
overflow: hidden;
background: url(/images/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/background.jpg', sizingMethod='scale');
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/background.jpg', sizingMethod='scale')";
}
#intro {
text-align: center;
padding-top: 60px;
}
#intro h1 {
color: #cfe9ee;
font-size: 70px;
text-shadow:
3px 3px 0 #000,
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
opacity: 0.9;
}
#intro h2 {
font-size: 24px;
color: #000000;
}
#intro h3 {
display:inline;
color: #555555;
}
.colorfade
{
display:inline;
font-size: 12px;
}
.colorfade:hover {
color: #000000;
text-decoration: underline;
}
a:link {
color: #555555;
text-decoration: none;
}
a:visited {
color: #555555;
text-decoration: none;
}
a:active {
color: #555555;
text-decoration: none;
}
.fade {
opacity: 0.65;
transition: opacity .15s ease-in-out;
-moz-transition: opacity .15s ease-in-out;
-webkit-transition: opacity .15s ease-in-out;
}
.fade:hover {
opacity: 0.9;
}