-
Notifications
You must be signed in to change notification settings - Fork 9
/
main.css
78 lines (68 loc) · 1.42 KB
/
main.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
html,
body {
padding: 0;
margin: 0;
}
html {
height: 100%;
background: #474747;
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#474747), color-stop(57%,#222222));
background: -webkit-radial-gradient(center, ellipse cover, #474747 0%,#222222 57%);
background: -webkit-radial-gradient(center, ellipse, #474747 0%, #222222 57%);
background: radial-gradient(ellipse at center, #474747 0%,#222222 57%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#222222',GradientType=1 );
}
body {
font-family: Lato, 'Helvetica Neue';
-webkit-font-smoothing: antialiased;
color: #c5c5c5;
text-align: center;
padding: 50px 0;
}
#logo {
margin: 0 auto -68px auto;
display: block;
position: relative;
left: 10px;
position: relative;
z-index: 1;
}
h1 {
width: 700px;
font-size: 150px;
margin: 0 auto;
text-align: center;
color: #fff;
position: relative;
text-shadow: 0px 0px 2px #686868,
0px -1px 1px #ddd,
0px -2px 1px #d6d6d6,
0px -3px 1px #ccc,
0px -4px 1px #c5c5c5,
0px -5px 1px #c1c1c1,
0px -6px 1px #bbb,
0px -7px 1px #777;
}
h1:after {
content: url(dripp.png);
position: absolute;
top: 20px;
left: 355px;
}
a {
color: #fff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
width: 100%;
margin: 0 auto;
}
.menu a {
display: inline-block;
margin: 0 10px;
font-size: 30px;
color: #f7d700;
}