blob: d9a22f221bfa9e958d04c1276c10848f4b5da5b3 (
plain)
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
|
@import 'bourbon';
body {
background: #eee;
font-family: $lucida-grande;
header {
margin-bottom: 30px;
}
form {
text-align: center;
input {
width: 3em;
font-size: 2.7em;
text-align: center;
border: 0px;
background: transparent;
}
}
ol {
display: inline;
li {
display: inline;
ol {
li {
padding: 0.4em 0.6em;
border: 1px black solid;
}
}
}
}
footer {
margin-top: 50px;
text-align: center;
font-size: 0.7em;
}
}
|