-
Notifications
You must be signed in to change notification settings - Fork 7
/
simple.css
91 lines (73 loc) · 1.42 KB
/
simple.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
body {
background: url(masked-background.jpg) no-repeat center center fixed;
background-size: cover;
margin: 0;
padding: 0;
}
* { box-sizing: border-box; }
#content {
width: 90%;
margin: auto;
padding: 0;
}
@media screen and (min-width: 800px) {
#content {
width: 720px;
}
}
#content-inner {
margin-top: 100px;
background-color: white;
}
#title {
padding-top: 10px;
font-size: 46px;
font-family: sans-serif;
height: 75px;
color: white;
background: #692C2C;
background-image: linear-gradient(to bottom right, #0000FF 0%, #692C2C 100%);
}
.note {
padding: 1em;
font-style: italic;
}
.dance {
padding-left: 40px;
width: 100%;
font-size: 20px;
padding: 3px;
overflow: scroll;
}
.dance:nth-child(odd) {
background-color: #DDD;
}
.dance-internal {
margin: 10px;
}
#dances {
padding-bottom: 5px;
}
html, body {height: 100%;}
#wrap {
min-height: 100%;
}
#content {
overflow:auto;
padding-bottom: 40px;
} /* must be same height as the footer */
#footer {
position: relative;
margin-top: -40px; /* negative value of footer height */
padding: 0px;
height: 40px;
padding-top: 4px;
clear:both;
background-color: black;
font-size: 30px;
font-family: sans-serif;
}
#back:link {text-decoration: none; color: #CCC}
#back:visited {text-decoration: none; color: #CCC}
#back:active {text-decoration: none; color: #CCC}
#back:hover {text-decoration: underline; color: #CCC}