forked from binford2k/goatops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (92 loc) · 1.5 KB
/
styles.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
html {
background: url(background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
position: relative;
margin: 0;
}
h1, h2 {
top: 0;
left: 1em;
position: fixed;
text-shadow: 6px 6px 24px black;
font-size: 3em;
font-weight: bolder;
color: white;
}
h2{
top: 2em;
left: 4em;
}
p {
padding: 0;
margin: 0;
}
p.tools {
position: absolute;
bottom: 0;
width: 100%;
}
#container {
width: 65%;
margin: 14em auto 4em;
padding: 1em 0 1.5em 0;
border: 1px solid #ccc;
border-radius: 1em;
background-color: #e0dddd;
opacity: 0.95;
max-height: 40%;
min-height: 10em;
overflow: scroll;
position: relative;
}
#container p {
font-size: small;
text-align: center;
}
#container a {
border: 1px solid #e0dddd;
border-radius: 4px;
padding: 2px;
}
#container a:hover {
background-color: #b7c0bc;
border: 1px solid #536988;
}
ul {
padding: 0.1em 0;
margin: 0;
}
li {
padding: 0 1em 0.25em 1em;
margin: 0;
list-style-type: none;
}
/* only show the first 5 items */
li + li + li + li + li + li {
display: none;
}
li:nth-child(odd) {
background: #ccc;
}
li.visible {
display: inherit;
}
#credits {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
background-color: #ccc;
opacity: 0.75;
height: 4em;
font-size: small;
}
.floaty-mc-floatface {
float: right;
margin-right: 1em;
}