-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
178 lines (168 loc) · 3.2 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
166
167
168
169
170
171
172
173
174
175
176
177
178
html {
height: 100%;
width: 100%;
}
/*Navbar Section*/
#navbar {
display: grid;
grid-template-columns: 50px 50px 1fr 50px 50px 50px 50px;
grid-template-rows: 50px;
grid-template-areas:
"about store . gmail image menu sign-in";
margin: 0 20px 0 10px;
}
a, p {
text-decoration: none;
color: rgba(0,0,0,0.87);
font-size: 13px;
font-family: Arial, Helvetica, sans-serif;
}
a:hover {
text-decoration: underline;
}
#about {
grid-area: about;
justify-self: center;
align-self: center;
}
#store {
grid-area: store;
justify-self: center;
align-self: center;
}
#gmail {
grid-area: gmail;
justify-self: center;
align-self: center;
}
#image {
grid-area: image;
justify-self: center;
align-self: center;
margin-right: 10px;
}
#menu {
grid-area: menu;
justify-self: center;
align-self: center;
margin-right: 20px;
}
#sign-in {
grid-area: sign-in;
justify-self: center;
align-self: center;
background-color: #4683ea;
height: 30px;
width: 65px;
line-height: 30px;
text-align: centeR;
color: white;
font-weight: bold;
border: 1px solid #4285f4;
}
/*Main Section*/
#main {
min-height: 100%;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 250px 70px 70px 250px;
grid-template-areas:
". logo ."
". search ."
". flexbox ."
". google-text .";
}
#logo {
grid-area: logo;
justify-self: center;
align-self: end;
}
#search {
grid-area: search;
height: 30px;
width: 80%;
align-self: center;
justify-self: center;
border: 0.1px solid rgba(0, 0, 0, 0.151);
border-radius: 100px;
}
#search:focus {
box-shadow: 1px 1px 5px grey;
}
#search:hover {
box-shadow: 1px 1px 5px grey;
}
#flexbox {
display: flexbox;
grid-area: flexbox;
justify-self: center;
align-self: center;
}
#google-search-btn {
border: none;
font-size: 15px;
color: #5F6368;
margin-right: 25px;
padding: 7px 15px 7px 15px;
border-radius: 3px;
}
#random-search-btn {
border: none;
font-size: 15px;
color: #5F6368;
padding: 7px 15px 7px 15px;
border-radius: 3px;
}
#google-search-btn:hover {
border: 1px solid rgba(0, 0, 0, 0.226);
}
#random-search-btn:hover {
border: 1px solid rgba(0, 0, 0, 0.226);
}
#google-text {
grid-area: google-text;
justify-self: center;
}
#deutsch {
color: blue;
}
/*Footer Section*/
#footer {
position: absolute;
bottom: 0;
display: grid;
grid-template-columns: 100px 100px 150px 1330px 70px 70px 70px;
grid-template-rows: 50px;
grid-template-areas:
"advertising business hsw . privacy terms settings";
}
#advertising {
grid-area: advertising;
justify-self: center;
align-self: center;
}
#business {
grid-area: business;
justify-self: center;
align-self: center;
}
#hsw {
grid-area: hsw;
justify-self: center;
align-self: center;
}
#privacy {
grid-area: privacy;
justify-self: center;
align-self: center;
}
#terms {
grid-area: terms;
justify-self: center;
align-self: center;
}
#settings {
grid-area: settings;
justify-self: left;
align-self:left;
}