-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (107 loc) · 1.85 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
body{
display: flex;
flex-direction: column;
font-size: 14px;
font-family: Roboto, Arial, sans-serif;
}
a {
text-decoration: none;
color: black;
}
nav {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 12px;
padding: 10px 20px;
}
nav span {
cursor: pointer;
}
nav a:nth-child(2) {
margin-right: auto;
}
img {
height: 92px;
width: 272px;
display: block;
margin: auto;
margin: 12vh auto 4vh;
}
.search {
position: relative;
width: auto;
max-width: 584px;
min-height: 44px;
margin: auto;
}
#searchbar {
width: 100%;
height: 40px;
border-radius: 20px;
border-color: lightgray;
border-style:solid;
border-width: 1px;
}
#search {
position: absolute;
left: 0;
margin-top: 10px;
margin-left: 10px;
color: gray;
}
#mic {
position: absolute;
right: 0;
margin-top:10px;
margin-right: 10px;
color: gray;
}
.search-button {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 15px;
}
.search-button input{
background-color: rgb(244, 244, 244);
border: 1px solid rgb(244, 244, 244);
border-radius: 4px;
margin: 11px 4px;
padding: 0 16px;
height: 36px;
min-width: 54px;
text-align: center;
cursor: pointer;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
margin-left: -8px;
background-color: rgb(240, 240, 240);
}
footer a {
color: gray;
}
.carbon-neutral {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
color: gray;
}
.footer-links {
display: flex;
justify-content: center;
padding: 8px 24px;
gap: 2%;
}
.footer-links a:nth-last-of-type(4) {
margin-right: 20%;
}
@media screen and (max-height: 390px) {
footer {
display: none;
}
}