-
Notifications
You must be signed in to change notification settings - Fork 9
/
style.css
93 lines (83 loc) · 1.5 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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@600&display=swap');
body {
background-color: #567;
font-family: Noto Sans;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
color: white;
}
.navbar {
overflow: hidden;
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 999;
text-align: center;
display: flex;
justify-content: center;
flex-grow: 3;
background-color: grey;
border-radius: 30px;
height: 70px;
}
.navbar a {
color: white;
text-decoration: none;
text-align: center;
float: left;
padding: 14px 14px;
font-size:25px;
margin-top: 5px;
margin-right: 100px;
}
.navbar a:hover {
background-color: #67a1db;
border-radius: 8px;
}
#header {
margin-top: 150px;
font-size: 60px;
}
.search-container {
display: flex;
flex-direction: row;
max-width: 350px;
width: 100%;
align-items: center;
justify-content: center;
border: none;
}
.search-container input {
border-radius: 40px;
width: 100%;
font-family: Noto Sans;
height: 50px;
border: none;
margin-bottom: 20px;
text-align: center;
}
.footer {
margin-top: 20px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.footer button {
border-radius: 20px;
font-family: Noto Sans;
background-color: 2274e0;
border: none;
color: white;
margin-right: 10px;
padding: 15px;
font-size: 15px;
}
.footer button:hover {
cursor: pointer;
background-color:#165dba;
}