-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (70 loc) · 1.08 KB
/
style.css
File metadata and controls
88 lines (70 loc) · 1.08 KB
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
print "Content-Type: text/css\n\n";
print <<'EOF';
html {
background-color: #2e3436;
color: #eeeeec;
}
h1 {
text-align: center;
font-size: 1.5em;
padding: 10px;
margin: 20px 0;
color: #edd400;
font-family: serif;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
}
fieldset {
border: 2px solid white;
padding: 2em 2em 1em;
margin: 10px 0;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
}
legend {
border: 2px solid white;
font-weight: bold;
color: #73d216;
padding: 3px;
}
table {
width: 100%;
border-collapse: collapse;
}
td, th {
border: 2px solid white;
vertical-align: top;
padding: 5px;
}
td p, td dl {
margin: 5px;
padding: 0;
}
th {
font-weight: bold;
color: #73d216;
}
tr.oddrow {
background: #729fcf;
color: black;
}
tr.evenrow {
background: #2e3436;
color: #eeeeec;
}
hr {
margin: 50px 50px 10px;
}
hr + p {
color: #888a85;
}
dd { display: none; }
/*
dl > dd {
display: none;
}
dl:active > dd {
display: block;
}
*/
EOF