-
Notifications
You must be signed in to change notification settings - Fork 1
/
screen.css
57 lines (45 loc) · 891 Bytes
/
screen.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
@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300);
h1, h2 {
font-family: "Open Sans Condensed";
}
h1 {
margin-bottom: 1em;
}
input {
margin-bottom: 2em;
}
section:not(#about) {
width: 50%;
min-height: 1em;
max-height: 10em;
padding: 0.5em;
overflow-y: scroll;
line-height: 1.5em;
margin-bottom: 2em;
border: 1px solid #DDD;
font-family: monospace;
}
section span.block {
margin-right: 7px;
cursor: help;
}
/* http://www.colourlovers.com/palette/3261255/Bookkeeping_Service */
section span.block:nth-child(5n) {
background: #FADDD7;
}
section span.block:nth-child(5n+1) {
background: #FAF0D7;
}
section span.block:nth-child(5n+2) {
background: #DAFAD7;
}
section span.block:nth-child(5n+3) {
background: #D7F4FA;
}
section span.block:nth-child(5n+4) {
background: #EBD7FA;
}
section#about {
padding: 0.5em;
font-family: monospace;
}