-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (58 loc) · 996 Bytes
/
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
html {
height: 100%;
}
body {
min-height: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
}
div {
border: px solid black;
}
.nav-div {
display: flex;
justify-content: space-around;
}
.container-div {
display: grid;
grid-template-columns: 2fr 60% 3fr;
font-size: 22px;
}
.footer {
grid-row-start: 3;
grid-row-end: 4;
margin-bottom: 20px;
}
#logo-div {
height: 300px;
display: flex;
align-items: flex-end;
justify-content: center;
}
#searchbar-div {
display: flex;
justify-content: center;
margin: 15px;
}
#searchbar-div input {
border: 2px solid black;
border-radius: 5px;
font-size: 30px;
padding: 10px;
}
#buttons-div {
display: flex;
width: 30%;
justify-content: space-around;
margin: 0 auto;
}
#buttons-div button {
font-size: 20px;
background: none;
color: gray;
padding: 10px;
border-radius: 10px;
}
#buttons-div button:hover {
color: black;
}