-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (123 loc) · 2.05 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
* {
margin: 0;
padding: 0;
border: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
body {
font-family: Arial, sans-serif;
font-size: 13px;
}
header {
display: flex;
justify-content: space-between;
height: 50px;
padding: 20px;
}
main {
display: flex;
flex-direction: column;
align-items: center;
margin: 110px;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
height: 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
.about-store, .gmail {
display: flex;
flex-direction: row;
align-items: center;
}
.about-store a {
color: #000000;
opacity: 0.74;
padding-left: 15px;
}
.gmail a {
color: rgba(0, 0, 0, 0.87);
padding-left: 15px;
}
.dot-grid {
background: url(assets/i1_1967ca6a.png);
background-position: -132px -38px;
opacity: 0.55;
background-size: 528px 68px;
display: inline-block;
height: 30px;
width: 30px;
margin-left: 15px;
}
.dot-grid:hover {
opacity: 1;
}
.sign-in {
background: #4285f4;
height: 30px;
width: 70px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
border-radius: 2px;
margin-left: 15px;
}
#sign-in {
color: white;
padding: 0;
}
.searchbox {
border: solid 1px #dfe1e5;
border-radius: 25px;
height: 44px;
width: 480px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
margin: 20px 0px;
}
.search-icon {
background: url(assets/desktop_searchbox_sprites318_hr.webp);
background-position: 0px 0px;
height: 29px;
width: 30px;
display: inline-block;
background-size: 30px;
}
.microphone {
width: 25px;
}
.two-buttons {
display: flex;
}
.search-lucky {
margin: 0px 15px;
background-color: #f2f2f2;
height: 36px;
width: 130px;
display: flex;
justify-content: center;
align-items: center;
color: #5F6368;
border-radius: 3px;
}
footer {
background-color: #f2f2f2;
border-top: 1px solid #e4e4e4;
}
.advertising-business a, .privacy-terms a {
color: #5F6368;
padding: 0px 10px;
}