-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatic.css
More file actions
80 lines (67 loc) · 1.26 KB
/
static.css
File metadata and controls
80 lines (67 loc) · 1.26 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
/* All tags
----------------------------------------------- */
* {
margin: 0;
padding: 0;
position: static;
}
/* Buttons
----------------------------------------------- */
select, button, input[type="button"], input[type="submit"] {
padding: 1ex;
vertical-align: bottom;
}
/* Forms
----------------------------------------------- */
input {
padding: 1px 6px;
}
input[type="text"] {
border: 1px solid #DDD;
font-size: 28px;
height: 50px;
}
select, button, input[type="button"], input[type="submit"] {
height: 54px;
}
/* Radius
----------------------------------------------- */
select, button, input {
border-radius: 8px;
-moz-border-radius: 8px;
}
/* Body
----------------------------------------------- */
body {
font: normal normal 14px Verdana, Arial, sans-serif;
color: #222222;
line-height: 1.5;
}
/* Links
----------------------------------------------- */
a {
color: gray;
text-decoration: italic;
}
a:link, a:visited , a:hover {
text-decoration: underline;
}
a:link {
color: #5588aa;
}
a:visited {
color: #555555;
}
a:hover {
color: #cc6600;
}
/* Images
----------------------------------------------- */
a img {
border-width: 0;
}
/* Frames
----------------------------------------------- */
iframe {
border: none;
}