-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylesheet.css
95 lines (80 loc) · 1.24 KB
/
stylesheet.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
/* general */
a {
font-family: arial, sans-serif;
color: #404040;
font-size: 15px;
text-decoration: none;
}
/* navbar */
li {
list-style-type: none;
display: inline-block;
margin: 10px 5px;
vertical-align: middle;
}
.navbar{
float: right;
}
/* content */
.logo{
text-align: center;
position: relative;
padding-top: 150px;
padding-bottom: 25px;
}
img#logo{
height: 95px;
width: 269px;
}
form{
overflow: hidden;
width: 560px;
height: 80px;
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
input{
width: 542px;
height: 25px;
font: 16px arial,sans-serif;
color: #222;
}
button{
margin: 16px 7px;
display: inline-block;
border: 1px solid #dcdcdc;
height: 30px;
width: 106px;
background: #f5f5f5;
font-size: 12px;
color: #404040;
font-weight: bold;
text-align: center;
border-radius: 2px;
font-family: Arial,sans-serif;
}
button.lucky{
width: 120px;
}
/* footer */
footer{
position: absolute;
bottom: 0;
height: 40px;
background-color: #f2f2f2;
border-top: 1px solid #e4e4e4;
line-height: 40px;
min-width: 100%;
}
#footer-left {
position: absolute;
left: -25px;
bottom: -25px;
}
#footer-right {
position: absolute;
right: 33px;
bottom: -25px;
}