blob: 240930b3b2feb4fde03b80787489b1bc6deae64a (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
body {
background-color: #000;
color: #ccc;
}
body, input {
font-family: 'Cantarell', sans-serif;
font-size: 16px;
}
a:link, a:visited {
color: #08a;
text-decoration: none;
}
a:hover {
color: #0af;
text-decoration: underline;
}
img {
border-style: none;
vertical-align: middle;
}
form {
display: inline;
text-align: center;
}
input, button {
background-color: #050505;
border: 1px solid #aaa;
color: #eee;
padding: 2px 5px;
}
input:focus {
border: 1px solid #38a;
}
input[type="submit"] {
background-color: #111;
padding: 1px 5px;
line-height: 27px;
}
label {
cursor: pointer;
}
header, article {
width: 900px;
margin: 20px auto;
clear: both;
}
img.aa {
float: left;
opacity: 0.9;
}
header {
position: relative; /* for #results */
}
.clear {
line-height: 0;
clear: both;
}
|