-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
158 lines (140 loc) · 2.64 KB
/
main.css
File metadata and controls
158 lines (140 loc) · 2.64 KB
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
149
150
151
152
153
154
155
156
157
158
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
#nav {
display: block;
text-align: right;
font-family: Arial, sans-serif;
font-size: 80%;
margin-top: 20px;
margin-right: 30px;
}
#nav .link {
color: black;
}
#nav a {
text-decoration: none;
padding-right: 12px;
}
#nav a:hover {
text-decoration: underline;
}
#nav .login {
border: 0;
border-radius: 2px;
color: white;
background-color: #4285f4;
font-weight: bold;
padding: 7px 11px 7px 11px;
}
#nav img {
width: 22px;
vertical-align: middle;
}
#logo {
display: block;
margin: auto;
text-align: center;
}
#logo img {
width: 270px;
background-position: center;
margin-top: 150px;
vertical-align: middle;
}
input {
display: block;
border: 1px solid #D8D8D8;
width: 580px;
height: 28px;
position: relative;
background-image:url('images/microphone.png');
background-position: right;
background-repeat: no-repeat;
background-size: 22px;
margin: 20px auto 20px auto;
}
#click {
display: block;
margin: 15px auto;
text-align: center;
}
#click a {
border: 1px solid #D0D0D0;
background-color: #F0F0F0;
color: #606060;
padding: 8px 6px 8px 6px;
text-decoration: none;
font-family: Arial, sans-serif;
font-size: 70%;
font-weight: bold;
margin-left: 10px;
}
#footer {
position: absolute;
width: 100%;
bottom: 0;
background-color: #F0F0F0;
padding: 12px 0 12px 0;
top-border: 1px solid #e4e4e4;
}
#footer a {
text-decoration: none;
color: #606060;
font-family: Arial, sans-serif;
font-size: 80%;
display: inline-block;
padding-left: 25px;
}
.footer_left {
float: left;
margin-right: 30px;
}
.footer_right {
float: right;
margin-right: 30px;
}