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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/* apply a natural box layout model to all elements */
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@font-face {
font-family: Poster;
src: url('SF Movie Poster.ttf');
/*font-weight: bol/d;*/
font-style: normal;
}
@font-face {
font-family: Poster Condensed;
src: url('SF Movie Poster Condensed.ttf');
/*font-weight: bol/d;*/
font-style: normal;
}
@font-face {
font-family: Cooper Black;
src: url('CooperBlackStd.otf');
font-style: normal;
}
html, body {
height:100%;
width: 100%;
margin: 0;
padding: 0;
border: 0;
}
body {
font-size: 20px;
font-family: 'Chango', sans-serif;
color: black;
}
#main {
width: 100%;
height: 100%;
text-align: center;
line-height: 0;
background-image: url(radial4.png);
background-size: 1000px;
background-position: 50%;
}
/*.jtag {
display: inline-block;
-webkit-transform: rotate(-10deg);
-webkit-backface-visibility:hidden;
}*/
.tighter {
letter-spacing: -10px;
}
.center {
line-height: normal;
display: inline-block;
vertical-align: middle;
}
.highlight {
color: rgb(255, 50, 50);
}
.groove {
z-index: 1000;
position: relative;
font-size: 140px;
margin-bottom: 100px;
/*font-weight: 800;*/
color: rgba(0,0,0,0.05);
}
.info {
/*text-transform: uppercase;*/
margin-top: 100px;
font-family: Poster Condensed;
line-height: 45px;
font-size: 60px;
color: rgb(230,230,230);
letter-spacing: 1px;
text-shadow: 0 0 20px rgb(0,0,0);
}
a {
/*border-bottom-color: white;
border-bottom-width: 1px;
border-bottom-style: solid;
padding-bottom: 1px;*/
text-decoration: underline;
}
.date {
color: rgb(255,255,255);
font-weight: 800;
text-shadow: 0 0 20px rgb(0,50,0);
}
/*.normal-small {
font-size: 60px;
}*/
.small {
font-size: 40px;
line-height: 36px;
}
/*.small-small {
font-size: 30px;
line-height: 33px;
}*/
|