-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
165 lines (138 loc) · 2.33 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
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
159
160
161
162
163
164
165
html, body {
margin: 0px;
padding: 0px;
border: 0px;
}
body {
font-family: "Arial", sans-serif;
font-size: 13px;
color: #757575;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
display: inline;
}
li {
display: inline;
padding-left: 15px;
}
li a, li a:visited {
color: rgba(0, 0, 0, 0.87);
text-decoration: none;
}
li a:hover {
text-decoration: underline;
}
#apps {
position: relative;
top: 8px;
width: 25px;
height: 25px;
padding: 0;
}
#sign-in {
width: 69px;
height: 30px;
font-size: 13px;
font-weight: bold;
color: white;
background-color: #4285f4;
border: none;
}
.center {
display: block;
margin: 0 auto;
}
.content {
position: relative;
top: 90px;
}
.search {
width: 480px;
height: 35px;
margin: 30px auto;
border: 1px solid #edeaea;
border-radius: 2px;
box-shadow: 00 2px 2px 0 rgba(0,0,0,0.16);
transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
font-size: 16px;
}
.search:hover, .search:active {
box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2)
}
#google-mic {
position: absolute;
/* top: -58px;
left: 800px;*/
/* top: 235px;
left: 800px;*/
top: 73%;
right: 31.5%;
width: 15px;
height: 20px;
z-index: 5;
}
input:focus {
outline: none;
}
.button-center {
text-align: center;
}
.search-button {
background-color: #f2f2f2;
border: none;
/* margin-left: 4px;
margin-right: 4px;*/
padding: 8px 16px;
color: #757575;
font-size: 13px;
font-weight: bold;
}
.search-button:hover, .search-button:active {
border: 1px solid #c6c6c6;
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
color: #222;
}
button:focus{
outline: none;
}
/*Added this because float property for #move-right was interfering with logo's
ability to center properly*/
img.center {
clear: right;
padding-top: 109px;
}
img.logo {
height: 92px;
width: 272px;
}
.top-nav {
position: absolute;
top: 20px;
width: 100%;
}
.footer {
position: absolute;
bottom: 0px;
width: 100%;
margin-bottom: 0px;
border-top: 1px solid #e7e7e7;
background-color: #f3f3f3;
padding-top: 12px;
padding-bottom: 12px;
}
.move-left {
padding-left: 30px;
}
.move-right {
float: right;
padding-right: 30px;
}
/*Commenting this out for right now,
but might prove useful when giving margins to right nav bar elements
probably bring back as class instead of ID to use for footer as well
#footer-right {
margin-right: 1%;
}*/