-
Notifications
You must be signed in to change notification settings - Fork 0
/
lcars.css
226 lines (201 loc) · 3.33 KB
/
lcars.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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/* ===== BASIC STUFF ===== */
@font-face {
font-family: 'lcars';
src: url(//:) format("no404"), url("fonts/lcars-webfont.woff") format("woff"), url("fonts/lcars-webfont.ttf") format("truetype"), url("fonts/lcars-webfont.svg#webfontMzhP0WIg") format("svg");
font-weight: normal;
font-style: normal;
}
* {
font-family: 'lcars', sans-serif;
}
body, html {
padding: 5px;
margin: 0px;
cursor: crosshair;
}
body {
background: black;
margin-bottom: 40px;
}
h2 {
font-size: 60px;
margin: 0px;
font-weight: 400;
border-left: solid 10px black;
border-radius: 0 15px 15px 0;
}
h2 span.fa {
margin: 0px 30px;
width: 60px;
text-align: center;
}
.content {
border-left: solid 30px #CC6699;
border-top-left-radius: 30px;
padding-bottom: 40px;
}
/* ===== LINES ===== */
.box {
line-height: 90px;
}
/* ===== CONTROL AREA ===== */
.controls {
float: right;
height: 80px;
padding-right: 30px;
}
.controls li {
cursor: pointer;
font-size: 40px;
line-height: 80px;
padding: 0px 10px;
list-style: none;
}
/* ===== FOOTER ===== */
footer {
height: 90px;
color: #000;
background: rgba(0,0,0,.8);
background: #CC6699;
position: fixed;
bottom: 0px;
width: 100%;
line-height: 80px;
}
footer li {
font-size: 60px;
font-family: 'Open Sans Condensed', sans-serif;
list-style: none;
}
footer ul {
padding: 0px;
margin: 0px 20px;
}
footer .footerleft {
float: left;
}
footer .footerright {
float: right;
}
footer a {
color: 000;
text-decoration: none;
}
.subwaynum {
border: 2px solid black;
display: inline-block;
line-height: 30px;
height: 30px;
padding: 7px 20px 5px;
border-radius: 10px;
}
/* ===== CONTENT AREA ===== */
.contentbox_1,
.contentbox_2,
.contentbox_3 {
height: 500px;
float: left;
}
.contentbox_1 {
width: 33.3%;
}
.contentbox_2 {
width: 66.6%;
}
.contentbox_3 {
width: 100%;
}
.contentbox {
overflow: hidden;
padding: 0 5px;
transition: height 1s ease;
}
.active .contentbox {
height: 500px;
margin-top: 0px;
}
.inactive .contentbox {
height: 0px;
}
.contentbox_3.tiles li {
width: 16.666%;
}
.contentbox_2.tiles li {
width: 25%;
}
.contentbox_1.tiles li {
width: 50%;
}
.contentbox ul {
padding: 0px;
margin: 0px;
}
.contentbox .tiles li {
line-height: 75px;
list-style: none;
display: block;
padding: 10px 0px 0px;
margin: 0px;
float:left;
overflow: hidden;
}
.contentbox .tiles a {
border: transparent 5px;
border-collapse: none;
text-align: center;
font-size: 40px;
line-height: 75px;
margin: 0px 5px;
background: white;
display: block;
color: black;
text-decoration: none;
}
/* ===== COLORS ===== */
.box {
line-height: 80px;
margin-bottom: 20px;
color: black;
background: black;
}
.box .title {
background: black;
padding: 15px 40px 15px 0;
color: #FF9900!important;
}
.box:nth-of-type(1) h2 {
background: #CC6699;
padding-left: 20px;
border-left: solid 0px black;
}
.box:nth-of-type(2) h2 {
background: black;
}
.box:nth-of-type(2) span,
.box:nth-of-type(2) .fa {
color: #FF9900!important;
}
.box:nth-of-type(3) h2 {
background: #CC99CC;
}
.box:nth-of-type(4) h2 {
background: #9999CC;
}
.box:nth-of-type(5) h2 {
background: #CC6666;
}
.box:nth-of-type(6) h2 {
background: #FFCC99;
}
.box:nth-of-type(7) h2 {
background: #9999FF;
}
.box:nth-of-type(8) h2 {
background: #FF9966;
}
.box:nth-of-type(9) h2 {
background: #CC6699;
}
.box:nth-of-type(10) h2 {
background: #CC6666;
}