forked from J4502-SS18/Push-Mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev_test.css
347 lines (294 loc) · 5.38 KB
/
dev_test.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/* global elements */
body {
margin: 0;
}
#text {
margin: 10px;
text-align: left;
}
#logoMobile {
display: block;
padding: 2px;
width: 150px;
margin-left: auto;
margin-right: auto;
margin-top: 15px;
}
a:hover {
color: #1c8000;
text-decoration: underline;
}
p {
font-family: Lato, Arial, sans-serif;
font-size: 16px;
line-height: 1.3;
}
.subhead {
font-family: Dosis, Helvetica, sans-serif;
font-weight: 400;
font-size: 24px;
padding-top: 8px;
margin-bottom: 10px;
}
h1 {
font-family: Dosis, Helvetica, sans-serif;
font-weight: 600;
font-size: 46px;
}
/* top navbar elements */
#navigation {
background-color: white;
width: 100%;
}
nav {
box-shadow: 0 4px 2px -2px gray;
}
nav ul {
font-family: Lato, Arial, sans-serif;
color: #28B800;
text-decoration: none;
font-family: Lato, Arial, sans-serif;
padding-left: 0;
padding-bottom: 10px;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
justify-content: space-around;
margin-top: 5px;
margin-bottom: 0px;
}
nav a {
color: #28B800;
text-decoration: none;
font-family: Lato, Arial, sans-serif;
}
.sticky {
position: fixed;
top: 0;
z-index: 1;
}
/* contact page elements */
.contact {
text-align: center;
}
.img-circle {
border-radius: 50%;
text-align:center;
}
.photo {
text-align: center;
}
.bio {
text-align: center;
font-family: Dosis, Helvetica, sans-serif;
font-size: 24px;
margin: 0 0 0 0;
}
.info {
text-align: center;
padding-left: 0;
font-family: Lato, Arial, sans-serif;
}
.container {
text-align: center;
}
ul {
list-style-type: none;
font-weight:bold;
}
/* Dev, Journo, Anti-Censorship page navbar */
.sidenav {
list-style-type: square;
padding: 0;
display: block;
background-color: #0E4771;
justify-content: center;
width: 100%;
}
.sidenav h3 {
text-align:center;
color: white;
padding-bottom:0;
}
.sidenav li {
display: block;
list-style-type: square;
padding-top: 5px;
padding-bottom: 5px;
}
.sidenav h3{
text-align:center;
color: white;
padding-bottom:0;
}
.sidenav ul a{
font-family: Lato, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #ffffff;
text-decoration: none;
}
.sidenav ul a:hover {
color: #ffffff;
text-decoration: underline;
}
.sidenav ul {
list-style-type: none;
text-align: left;
padding-bottom: 3px;
padding-left: 0;
}
/* New sidebar menu */
.sidenav {
height: 100%; /* Full-height: remove this if you want "auto" height */
width: 200px; /* Set the width of the sidebar */
position: fixed; /* Fixed Sidebar (stay in place on scroll) */
z-index: 1; /* Stay on top */
top: auto; /* Stay at the top */
left: 0;
bottom: auto;
background-color: #0E4771; /* Black */
overflow-x: hidden; /* Disable horizontal scroll */
overflow-y:scroll;
float:none;
padding-top: 20px;
}
/* The navigation menu links */
.sidenav a {
font-family: Lato, Arial, sans-serif;
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #ffffff;
display: block;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
color: #ffffff;
text-decoration: underline;
}
/* Style page content */
#text {
margin-left: 200px; /* Same as the width of the sidebar */
padding: 0px 10px;
}
/* End of Dev, Journo, Anti-Censorship page navbar */
#pserv{
font-family: Lato, Arial, sans-serif;
font-size: 16px;
line-height: 1.3;
list-style-type: square;
}
#servers{
font-family: Lato, Arial, sans-serif;
font-size: 16px;
line-height: 1.3;
list-style-type: square;
}
/* footer elements */
.footer {
position: static;
left: 0;
right: 0;
bottom: 0;
border-top: 4px solid grey;
}
.footer p {
text-align: center;
color: grey;
}
.footer ul {
padding-left: 0;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
justify-content: space-around;
}
.footer li{
font-family: Lato, Arial, sans-serif;
font-size: 16px;
}
#doclist{
font-family: Lato, Arial, sans-serif;
font-size: 16px;
line-height: 1.3;
list-style-type: square;
}
#integration{
font-family: Lato, Arial, sans-serif;
font-size: 16px;
line-height: 1.3;
list-style-type: square;
}
ul #intplus{
font-family: Lato, Arial, sans-serif;
font-size: 16px;
line-height: 1.3;
list-style-type: square;
}
#servers{
font-family: Lato, Arial, sans-serif;
font-size: 16px;
line-height: 1.3;
list-style-type: square;
}
.sublist{
font-family: Lato, Arial, sans-serif;
font-size: 16px;
line-height: 1.3;
list-style-type: square;
}
}
/* Homepage style goes here */
.homepageimg {
max-width: 100%;
height: auto;
}
.homepageimg img {
max-width: 100%;
height:auto;
}
.homepage_statement {
text-align: center;
}
#testimonial {
text-align: center;
}
.person {
text-align:center;
display: inline-block;
position: relative;
width: 200px;
height: 200px;
overflow: hidden;
border-radius: 50%;
}
.person img {
width: auto;
height: 100%;
margin-left: -30px;
}
.info {
text-align: center;
}
.quote {
margin-left: 1em;
margin-right: 1em;
text-align: left;
}
@media screen and (min-width: 800px) {
nav ul {
flex-flow: row wrap;
justify-content: flex-end;
padding-bottom: 30px;
}
nav li {
padding: 10px 10px;
}
#logoMobile {
float: left;
margin-top: 0;
}
}