blob: b51ff8d85fefb3bedd45fba889a6202fa17d13f7 (
plain) (
blame)
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
|
@media screen and (max-width: 600px) {
.nav a:not(:first-child) {display: none;}
.nav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.nav.responsive {position: relative;}
.nav.responsive a.icon {
position: absolute;
right: 0;
top: 0;
}
.nav.responsive a {
float: none;
display: block;
text-align: left;
}
}
body{
font-family: 'Roboto', sans-serif;
background: #333;
color: white
}
a {
color: white;
}
.iframe {
display: block;
}
.subtitle {
font-size: 40px;
text-align: center;
}
.answer {
font-style: italic;
padding: 0;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: white;
text-align: center;
}
.title{
font-size: 50px;
text-align: center;
}
#title{
border: solid white 5px;
}
#navigation{
padding-top: 0px;
padding-left: 0px;
padding-right: 0px;
padding-bottom: 15px;
margin: -1px;
}
ul.navbar {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: whitesmoke;
}
li.list-blog{
text-decoration: none;
display: block;
}
li.logo{
font-weight: bold;
color: black;
}
li.nav {
float: left;
display: block;
color: black;
text-align: center;
text-decoration: none;
}
a.nav{
color: black;
text-decoration: none;
}
li a:hover {
background-color: gray;
}
.active {
background-color: #1f8e42;
color: black;
}
.center {
text-align: center;
}
.Question {
padding: 0;
}
.nav .icon {
display: none;
}
|