-
Notifications
You must be signed in to change notification settings - Fork 0
/
google.css
125 lines (117 loc) · 2.24 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
html,body {
margin: 0;
height: 100%;
}
#nav {
display: flex;
justify-content: flex-end;
margin-top: 15px;
}
#nav a{
margin-right: 20px;
cursor: pointer;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#middle {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#logo {
text-align : center;
}
#searchbarcontain{
margin-top:20px;
text-align:center;
position: relative;
}
#search,#voice {
position: absolute;
top: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#search {
left:10px;
}
#voice {
right: 10px;
}
#searchbar{
padding-top:10px;
padding-bottom:10px;
outline:0;
width:500px;
height: 23px;
padding-left: 30px;
padding-right: 30px;
border-radius: 20px;
border: 1px solid rgb(202, 200, 200)
}
#searchbar:hover {
box-shadow: 0 0 10px 2px rgb(194, 191, 191);
}
#buttons {
margin-top: 20px;
display: flex;
justify-content: center;
border: 2px rgb(238, 237, 237);
}
.button {
margin-left: 10px;
margin-right: 10px;
padding: 5px 10px;
cursor: pointer;
border-radius: 3px;
background: white;
border: 2px solid rgb(238, 236, 236);
}
#links {
margin-top: 20px;
text-align: center;
font-size: 13px;
}
body {
display: flex;
flex-direction: column;
}
.button:hover {
box-shadow: 0 0 2px 1px black;
border: 2px solid rgb(238, 231, 231);
}
#footer-Content {
display: flex;
align-items: center;
background: rgb(243, 244, 245);
font-size: 14px;
cursor: pointer;
font-family: arial,sans-serif;;
height: 40px;
border-top: 1px solid rgb(221, 218, 218);
padding-left: 35px;
color: rgb(92, 89, 89);
}
#footer-1{
text-decoration: none;
background: rgb(241, 240, 240);
padding-left: 30px;
font-family: arial,sans-serif;
font-size: 13px;
color: rgb(92, 89, 89);
}
#footer-2{
display: flex;
font-size: 13px;
padding-left: 669px;
font-family: arial,sans-serif;;
color: rgb(92, 89, 89);
}