-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransparent.css
202 lines (174 loc) · 2.83 KB
/
transparent.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
/* ===== BASIC STUFF ===== */
* {
font-family: 'Open Sans Condensed', sans-serif;
text-shadow: 1px 1px 1px black,
1px -1px 1px black,
-1px 1px 1px black,
-1px -1px 1px black;
}
a {
color: white;
}
body, html {
padding: 0px;
margin: 0px;
cursor: crosshair;
color: white;
}
body {
padding-bottom: 90px;
background: url("images/transparent.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
h2 {
font-size: 50px;
margin: 0px;
font-weight: 400;
}
h2 span.fa {
margin: 0px 30px;
width: 60px;
text-align: center;
}
/* ===== LINES ===== */
.box {
line-height: 90px;
}
/* ===== CONTROL AREA ===== */
.controls {
float: right;
height: 80px;
padding-right: 30px;
}
.controls li {
cursor: pointer;
font-size: 40px;
line-height: 90px;
padding: 0px 10px;
list-style: none;
}
/* ===== FOOTER ===== */
footer {
height: 90px;
color: #FFFFFF;
background: rgba(0,0,0,.7);
position: fixed;
bottom: 0px;
width: 100%;
line-height: 90px;
}
footer li {
font-size: 40px;
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: white;
text-decoration: none;
}
.subwaynum {
border: 2px solid white;
display: inline-block;
line-height: 30px;
height: 30px;
padding: 5px 20px 7px;
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: 20px;
line-height: 75px;
margin: 0px 5px;
background: rgba(0,0,0,.4);
display: block;
text-decoration: none;
}
.contentbox .cameraimage img {
width:100%;
}
/* ===== TABLES ===== */
.contentbox table {
width: 100%;
font-size: 40px;
}
/* ===== COLORS ===== */
.box h2 {
background: rgba(0,0,0,.4);
backdrop-filter: blur(5px);
}
.box-helloworld h2 {
background: rgba(0,0,0,.7);
}
.box-motd h2 {
background: rgba(0,0,0,.7);
}
li .active {
background: rgba(0,0,0,.6);
padding: 0px 15px;
border-radius: 30px;
}