-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
123 lines (106 loc) · 1.71 KB
/
styles.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* */
* {
margin: 0;
padding: 0;
}
body {
padding: 40px;
font-family: Georgia, Times, serif;
color: #353535;
}
h1, h2, h3, h4, h5, h6 {
font-family: Helvetica, Arial, sans-serif;
font-weight: normal;
font-size: 50px;
margin: 10px;
padding: 0;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
text-align: center;
}
p {
font-family: Georgia, Times, sans-serif;
font-weight: normal;
font-size: 16px;
margin: 10px;
padding: 0;
text-align: center;
color: red;
text-transform: uppercase;
font-weight: bolder;
}
form {
text-align: left;
width: 300px;
margin: 20px auto 0;
}
form label {
display: block;
width: 290px;
padding: 5px;
margin: 10px 0 0;
background: #000;
color: #fff;
border: none;
font-size: 20px;
font-weight: lighter;
}
form input {
display: block;
width: 285px;
padding: 5px;
margin: 10px 0 0;
background: #fff;
color: #000;
border: none;
font-size: 20px;
font-weight: lighter;
}
form input[type="submit"] {
background: #000;
color: #fff;
cursor: pointer;
width: 300px;
}
#container {
text-align: center;
background: url("images/money.jpg") top center repeat-y;
}
#header {
background: url("images/transparent_white.png");
margin: 10px auto;
padding: 10px;
border: solid 2px black;
text-align: center;
width: 600px;
}
#table {
display: table;
margin: 20px auto;
font-size: 14px;
font-style: italic;
border: none;
background: url("images/transparent_white.png");
}
#footer {
background: white;
}
.column {
display: table-row;
width: 80px;
text-align: center;
padding: 5px;
margin: 10px;
}
.row {
display: table-cell;
width: 80px;
text-align: center;
padding: 10px;
}
#line {
border: none;
}
#column-1 {
background-color: #e1e1e1;
}