-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (95 loc) · 1.64 KB
/
style.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
/* Knockoff Google CSS */
* {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
font-size: 13px;
}
#container {
width: 580px;
margin: 140px auto 0;
text-align: center;
}
h1#logo {
width: 272px;
height: 92px;
background: url('CSS/Images/googlelogo_color_272x92dp.png') top left no-repeat;
background-size: 100%;
text-indent: -9999px;
margin: 0 auto;
}
input[type="text"] {
width: 566px;
padding: 7px;
margin: 25px 0 18px;
border: solid 1px #ccc;
font-size: 16px;
}
input[type="text"]:hover {
border-color: #aaa;
}
input[type="submit"] {
background: #eee;
color: #333;
border: solid 1px #ccc;
padding: 5px;
font-size: 10px;
font-family: Arial, sans-serif;
font-weight: bold;
margin: 0 4px;
}
input[type="submit"]:hover {
cursor: pointer;
}
small {
display: block;
margin: 10px 0 0 0;
font-size: 12px;
}
a:link, a:visited {
color: dodgerblue;
}
nav#header {
text-align: right;
padding: 20px;
}
nav#header ul li {
display: inline;
}
nav#header ul li a:link,
nav#header ul li a:visited,
footer nav ul li a:link,
footer nav ul li a:visited {
color: #555;
text-decoration: none;
padding: 10px;
}
nav#header ul li a:hover,
footer nav ul li a:hover {
text-decoration: underline;
}
footer {
background: #eee;
position: fixed;
bottom: 0;
width: 100%;
}
footer nav {
padding: 20px;
}
footer nav ul li {
display: inline;
}
footer nav ul {
float: left;
}
footer nav ul.right-links {
float: right;
}
.clearfix:after {
content: "";
display: table;
clear: both;
}