-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
81 lines (68 loc) · 1.07 KB
/
main.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
* {
box-sizing: border-box;
}
body {
background-color: hsl(90, 38%, 95%);
}
header {
background-color: #d6b99c;
color: #9c9cd6;
padding: 10px;
text-align: center;
}
header h1 {
font-size: 2.5em;
font-weight: 900;
}
nav {
width: 40%;
margin: 10px auto;
}
nav ul {
border: 2px solid #d6b99c;
border-radius: 8px;
display: flex;
margin: 0;
padding: 0;
list-style-type: none;
}
nav ul li {
background-color: #b9d69c;
color: #9c9cd6;
padding: 5px;
text-align: center;
}
::placeholder {
color: #9c9cd6;
}
.search {
flex: 1;
}
.search_input {
background: transparent;
border: 0;
border-bottom: 1px dashed #d69cb4;
width: 100%;
}
.search_input:focus {
outline: none;
}
main {
background-color: hsl(90, 38%, 92%);
border-radius: 4px;
color: #7878c7;
margin: 10px auto;
padding: 10px;
width: 60%;
}
footer {
background-color: #d6b99c;
color: #9c9cd6;
padding: 5px;
text-align: center;
}
#toi_btn {
position: fixed;
right: 0;
top: 0;
}