-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscreen.css
74 lines (68 loc) · 2.01 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
* { margin: 0; padding: 0; border: 0 }
body { font-size: 62.5%; font-family: Optima, Verdana, sans-serif }
a { color: #004FDF; text-decoration: none }
a:hover { text-decoration: underline }
#wrap {
width: 800px;
margin: 0 auto;
padding: 20px;
margin-top: 50px;
margin-bottom: 30px;
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
border-bottom: 1px solid #999;
border-right: 1px solid #999;
min-height: 500px;
}
#logo {
float: left;
font-size: 20px;
padding: 3px;
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
border-bottom: 1px solid #999;
border-right: 1px solid #999;
margin-right: 20px;
-webkit-transform: rotate(-10deg);
-moz-transform: rotate(-10deg);
transform: rotate(-10deg);
}
#logo .faded { color: #999 }
h1 { size: 2em; font-weight: bold; margin-bottom: 2em }
h2 { size: 1.8em; font-weight: bold; margin: 0.5em 0 }
p, ul { font-size: 1.3em }
p { margin: 0.4em 0 }
ul { list-style-type: disc; line-height: 1.6em; }
li { margin-left: 16px }
code { display: block; font-size: 1.6em; margin: 1.5em 0 }
form,
input { font-size: 1.3em }
form { width: 60%; margin: 1em 0 }
label { display: block; font-weight: bold }
input {
padding: 3px;
width: 25em;
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
border-bottom: 1px solid #999;
border-right: 1px solid #999;
margin-bottom: 0.5em;
}
.buttons button {
display: block;
float: left;
margin: 0 7px 0 0;
background-color: #f5f5f5;
border: 1px solid #dedede;
border-top: 1px solid #eee;
border-left: 1px solid #eee;
font-size: 0.8em;
line-height: 130%;
text-decoration: none;
font-weight: bold;
color: #565656;
}
.buttons button { width:auto; overflow:visible; padding:4px 10px 3px 7px; /* IE6 */ }
.buttons button[type] { padding:5px 10px 5px 7px; /* Firefox */ line-height: 17px; /* Safari */ }
*:first-child+html button[type] { padding:4px 10px 3px 7px; /* IE7 */ }
.clear { clear: both }