-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.css
72 lines (66 loc) · 1.25 KB
/
header.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
@import url(https://fonts.bunny.net/css?family=lobster-two:400|pinyon-script:400);
.headerog {
width: 100vw;
height: 50px;
background: #1d2d44;
display: flex;
justify-content: space-around;
align-items: center;
padding: 5px 0px 5px 0px;
}
.logo-container {
margin-left: -60px;
font-family: "Pinyon Script", handwriting;
font-size: 1.5em;
text-decoration: underline;
font-weight: bold;
color: gold;
}
nav {
position: relative;
height: 50px;
width: 550px;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
font-family: "Lobster two";
font-size: 1.1em;
font-weight: 500;
}
nav a {
position: relative;
display: inline-block;
margin: 0 20px;
font-size: 1.5em;
color: #748cab;
text-decoration: none;
z-index: 1;
}
nav a:hover {
color: #f0ebd8;
}
.search-container {
display: flex;
margin-right: -70px;
}
.search-input {
border: none;
border-radius: 10px;
width: 180px;
padding: 8px;
background-color: #3e5c76;
caret-color: #ff79c6;
color: #f8f8f2;
}
.search-button {
cursor: pointer;
border: none;
border-radius: 12px;
font-family: "Lobster Two";
background-color: #748cab;
color: #f0ebd8;
padding: 7px 15px;
margin-left: 15px;
margin-right: 18px;
}