-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
148 lines (123 loc) · 1.96 KB
/
main.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
body, td, a, p {
font: 13px/27px Arial,sans-serif;
color: #404040;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#content {
margin: 0 auto;;
text-align: center;
}
#logo {
height: 230px;
margin-top: 20px;
}
#logo img {
width: 550px;
}
#search-box {
width: 400px;
height: 27px;
margin: 0 auto;
border: 1px solid #cdcdcd;
}
#search-box:hover {
border-color: rgba(0,0,0,.3);
}
nav {
text-align: right;
margin-right: 30px;
}
nav {
list-style-type: none;
}
nav ul li {
display: inline;
margin-left: 12px;
}
button.search-button {
cursor: default;
display: inline-block;
font-weight: bold;
height: 29px;
line-height: 29px;
min-width: 54px;
padding: 0 8px;
text-align: center;
text-decoration: none;
-webkit-border-radius: 2px;
border-radius: 2px;
-webkit-user-select: none;
border: 1px solid #dcdcdc;
border-color: rgba(0,0,0,0.1);
color: #444;
font-size: 11px;
background: #f5f5f5;
background: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1);
background: linear-gradient(top,#f5f5f5,#f1f1f1);
margin: 16px 8px;
}
button.search-button:hover {
box-shadow: 0 1px 1px rgba(0,0,0,0.2);
border-color: rgba(0,0,0,0.2);
}
button.search-button:focus {
outline: 0;
border-color: #4d90fe;
}
button.search-button:active {
border-color: #4d90fe;
}
footer {
background: #f2f2f2;
border-top: 1px solid #e4e4e4;
line-height: 40px;
min-width: 600px;
bottom: 0;
left: 0;
position: absolute;
right: 0;
}
input#search-field {
border: none;
padding: 0;
margin: 0;
height: auto;
width: 100%;
font: 16px Arial, sans-serif;
}
input #search-field:focus {
outline: 0;
}
footer a {
color: #666;
}
footer ul {
list-style-type: none;
margin: 0;
padding: 0;
}
footer ul li {
display: inline;
}
footer ul.left {
float: left;
margin-left: 30px;
}
footer ul.left li {
margin-right: 30px;
}
footer ul.right {
float: right;
margin-right: 30px;
}
footer ul.right li {
margin-left: 30px;
}
.red {
color: #b14436;
}