-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle.css
132 lines (94 loc) · 1.6 KB
/
google.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
* {
margin 0;
padding: 0;
}
body {
font-family: Arail, sans-serif;
font-size: 13px;
}
#container {
width: 580px;
margin: 135px auto 0;
text-align: center;
}
h1#logo {
width: 272px;
height: 92px;
background: url('image/googl1.png') top left no-repeat;
background-size: 100%;
text-indent: -99999px;
margin: 0 auto;
}
input[type="text"] {
width: 580px;
padding: 10px;
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 #ddd;
padding: 5px;
font-size: 11px;
font-family: Arial, sans-serif;
font-weight: bold;
margin: 0 5px;
}
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:visited{
color: #555;
text-decoration: none;
padding: 10px;
}
nav#header ul li a:hover,
footer nav ul li a:visited {
text-decoration: underline;
}
footer{
background: #eee;
position: fixed;
bottom:0px;
width: 100%;
}
footer nav{
padding: 20px;
}
footer nav ul li{
display: inline;
}
footer nav ul{
float:left;
}
footer nav ul.right-links{
float:right;
text-align: right;
}
.clearefix:after{
content:"";
display: table;
clear: both;
}