-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
77 lines (67 loc) · 1.12 KB
/
app.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
body {
background-image: url(http://subtlepatterns.com/patterns/ricepaper_v3.png);
background-position: initial initial;
background-repeat: initial initial;
}
/* Empty rule. :( */
nav {
}
.hidden {
display: none
}
/* The font-face rule is cool, we should import new fonts */
@font-face {
font-family: Papyrus;
src: url(Papyrus.ttc);
}
.navbar {
}
.examples li {
font-size: 20px;
border: 2px solid black;
background-color: lightgrey;
height: 170px;
}
img.legacy-center {
display: block;
}
.map {
margin-top: 50px;
}
.register {
margin-top: 25px;
}
.faq-question {
font-size: 20px;
font-family: serif;
font-weight: bold;
margin-top: 12px;
}
.faq-answer {
font-size: 18px;
font-family: sans-serif;
}
#faq-wrapper {
border: 1px dashed black;
padding: 5px;
margin: 5px;
}
.view-count-wrapper {
position: absolute;
right: 50px;
top: 100px;
text-align: right;
border: 1px solid black;
padding: 10px;
font-size: 20px;
width:300px;
}
.view-count {
background-color: #000000;
color: #ffffff;
font-family: monospace;
display: inline-block;
}
.error-buddy {
background-image: url(error-buddy.png)
}