-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
228 lines (192 loc) · 3.64 KB
/
style.css
File metadata and controls
228 lines (192 loc) · 3.64 KB
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
/* Modern clean styling inspired by survey.perlide.org */
body {
font-family: Arial, sans-serif;
max-width: 1000px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
line-height: 1.6;
}
.container {
background-color: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin-bottom: 30px;
}
/* Header styles */
.header {
text-align: center;
margin-bottom: 30px;
}
.header img {
width: 80px;
height: 80px;
margin-bottom: 20px;
}
h1 {
color: #333;
text-align: center;
margin-bottom: 10px;
font-size: 2.5em;
font-weight: 300;
}
.tagline {
text-align: center;
color: #666;
font-style: italic;
margin-bottom: 40px;
font-size: 1.2em;
}
/* Navigation */
.navigation {
background-color: #007acc;
padding: 15px 0;
margin: -40px -40px 40px -40px;
border-radius: 8px 8px 0 0;
}
.navigation ul {
list-style: none;
padding: 0;
margin: 0;
text-align: center;
}
.navigation li {
display: inline-block;
margin: 0 20px;
}
.navigation a {
color: white;
text-decoration: none;
font-weight: bold;
padding: 10px 20px;
border-radius: 4px;
transition: background-color 0.3s;
}
.navigation a:hover {
background-color: rgba(255,255,255,0.2);
}
/* Content sections */
.content-section {
margin-bottom: 40px;
}
.section-title {
color: #333;
font-size: 1.8em;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #007acc;
}
/* Poll styles */
#polls ul {
list-style: none;
padding-left: 0px;
}
#polls ul li {
margin-bottom: 15px;
padding: 15px;
background-color: #f9f9f9;
border-left: 3px solid #007acc;
border-radius: 4px;
transition: background-color 0.3s;
}
#polls ul li:hover {
background-color: #f0f8ff;
}
#polls ul li span {
width: 150px;
display: inline-block;
font-weight: bold;
color: #007acc;
}
#polls ul li a {
color: #333;
text-decoration: none;
margin-left: 10px;
}
#polls ul li a:hover {
color: #007acc;
text-decoration: underline;
}
/* Table styles */
.styled_table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.styled_table th,
.styled_table td {
padding: 15px;
text-align: left;
border-bottom: 1px solid #ddd;
}
.styled_table th {
background-color: #007acc;
color: white;
font-weight: bold;
}
.styled_table tr:hover {
background-color: #f5f5f5;
}
.styled_table tr:nth-child(even) {
background-color: #f9f9f9;
}
.styled_table td:first-child {
font-weight: bold;
color: #007acc;
width: 200px;
}
.styled_table a {
color: #007acc;
text-decoration: none;
}
.styled_table a:hover {
text-decoration: underline;
}
/* Footer */
.footer {
text-align: center;
padding: 20px;
background-color: #f0f0f0;
border-radius: 8px;
margin-top: 30px;
}
.footer a {
color: #007acc;
text-decoration: none;
font-weight: bold;
}
.footer a:hover {
text-decoration: underline;
}
/* Stats/info box */
.stats {
background-color: #e8f4f8;
padding: 20px;
border-radius: 8px;
margin-bottom: 30px;
text-align: center;
}
/* Responsive design */
@media (max-width: 768px) {
body {
padding: 10px;
}
.container {
padding: 20px;
}
.navigation {
margin: -20px -20px 30px -20px;
}
.styled_table {
font-size: 14px;
}
.styled_table td:first-child {
width: auto;
}
#polls ul li span {
width: 120px;
font-size: 14px;
}
}