-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
118 lines (101 loc) · 1.76 KB
/
styles.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
html {
height: 100%;
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction:column;
}
#nav {
display: flex;
justify-content: flex-end;
margin-top: 15px;
}
#nav a {
margin-right: 20px;
}
#nav a.topimage {
width: 30px;
height: 30px;
background: grey;
border-radius: 50%;
}
#nav a.toplink {
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #70757A;
}
.google-image {
margin-top: 300px;
text-align: center;
}
.search-bar{
display:flex;
justify-content: center;
align-items: center;
margin-top: 14px;
}
.search-bar-content {
padding: 10px;
width: 450px;
outline: 0;
border-radius: 20px;
border: 1px solid #70757A;
}
.buttons {
display:flex;
justify-content: center;
margin-top: 14px;
}
.button-style {
background-color: #f8f9fa;
border: 1px solid #f8f9fa;
border-radius: 4px;
color: #3c4043;
font-family: arial,sans-serif;
font-size: 14px;
margin: 11px 4px;
padding: 0 16px;
line-height: 27px;
height: 36px;
min-width: 54px;
text-align: center;
cursor: pointer;
outline: 0;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
.foot {
width: 100%;
background-color: rgb(204, 204, 204);
height: 40px;
left: 0px;
bottom: 0px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color:#f2f2f2;
border-top: 1px solid #dadce0;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #70757A;
}