-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (84 loc) · 1.55 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
html {
background: #f2e7e2;
font-family: 'Fredoka One', cursive;
color: #aba3b0;
overflow-y: hidden;
overflow-x: auto;
}
main {
background: #f2e7e2;
overflow-y: hidden;
overflow-x: auto;
}
.nav-bar, footer {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
height: 2rem;
}
.nav-bar a, footer a {
text-decoration: none;
text-align: center;
width: 200px;
color: #55008a;
}
.nav-bar a:hover, footer a:hover {
color: #63a874;
}
.nav-bar {
position: fixed;
border-bottom: 2px solid #aba3b0;
top: 0;
right: 0;
left: 0;
}
.footer {
position: fixed;
border-top: 2px solid #aba3b0;
bottom: 0;
right: 0;
left: 0;
}
main {
height: 100vh;
background: #f2e7e2;
display: flex;
justify-content: center;
align-items: center;
}
.blank-top, .blank-bottom, .top-left, .top-right, .bottom-left, .bottom-right {
width: 33vw;
}
.top-left, .bottom-left {
display: flex;
justify-content: start;
}
.top-right, .bottom-right {
display: flex;
justify-content: end;
}
.search-bar {
display: flex;
flex-direction: column;
}
.search-bar input[type=text] {
width: 500px;
height: 20px;
padding: 6px;
border: none;
border-width: 2px;
margin-top: 8px;
font-size: 17px;
border-radius: 10px;
}
.search-bar button {
width: 50px;
height: 35px;
padding: 6px;
border: none;
border-width: 2px;
font-size: 17px;
margin-right: 16px;
border-radius: 10px;
}