-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
117 lines (95 loc) · 1.3 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
body {
font-family:Helvetica, sans-serif;
font-size: 15px;
margin: 0px;
}
img {
width: 600px;
}
a {
text-decoration: none;
color: #696969;
}
a:hover {
text-decoration: underline;
}
.nav ul {
float: right;
}
li {
display: inline-block;
padding: 5px;
}
.search_term {
width: 520px;
margin-left: 40px;
}
input[type=submit] {
text-align: center;
font: bold;
padding: 10px;
display: inline-block;
background-color: #efefef;
color: #333333;
border-radius: 3px;
border: 1px solid #cecece;
margin-top: 10px;
}
input[type=text] {
height: 25px;
margin-top: 10px;
font-size: 28px;
color: #777777;
}
.buttons {
width: 300px;
margin-left: 200px;
}
.nav {
display: block;
width: 100%;
height: 50px;
}
.footer {
display: block;
bottom: 0px;
position: absolute;
background-color: #efefef;
width: 100%;
height: 20px;
font-size: 12px;
padding-bottom: 25px;
}
.page {
display: block;
clear: both;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.sign_in {
background-color: #1E90FF;
padding: 7px;
border-radius: 3px;
width: 70px;
height: 20px;
text-align: center;
margin-top: -10px;
}
.sign_in a {
color: #fff;
}
.left {
float: left;
margin-left: -10px;
}
.right {
float: right;
margin-right: 20px;
}
.left li {
padding-right: 40px;
}
.right li {
padding-left: 40px;
}