-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirty.css
86 lines (73 loc) · 1.28 KB
/
dirty.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
75
76
77
78
79
80
81
82
83
84
85
86
/*CSS Reset*/
* {
margin: 0;
padding: 0;
}
body {
background: black url('images/background.jpg') top center no-repeat;
font-size: 20px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: lighter;
text-align: center;
padding: 40px;
color: #333;
-webkit-font-smoothing: antialiased;
text-rendering: optimizelegibility;
}
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
padding: 0 0 10px;
Margin: 0 0 10px;
}
#container {
width: 600px;
margin: 0 auto;
}
.content-block {
background: url('images/transparent_white.png') top left repeat;
padding: 20px;
margin: 20px 0;
}
#content {
border: solid 10px black;
}
#reserve {
border: solid 10px white;
}
#footer {
background: black;
color: white;
}
form {
text-align: left;
width: 300px;
margin: 20px auto 0;
}
form label {
display: block;
width: 290px;
padding: 5px;
text-transform: uppercase;
font-weight:bold;
font-size: 11px;
background: #333;
color: white;
}
form input {
display: block;
width: 290px;
padding: 5px;
margin: 0 0 10px;
font-size: 22px;
font-family: Georgia, Times, serif;
font-style: italic;
-webkit-font-smoothing: antialiased;
text-rendering: optimizelegibility;
border: none;
}
form input[type="submit"] {
background: #333;
color: white;
cursor: pointer;
width: 300px;
}