-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (52 loc) · 934 Bytes
/
style.css
File metadata and controls
64 lines (52 loc) · 934 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&display=swap");
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Baloo Bhai 2", cursive !important;
background-color: hsl(206, 21%, 94%);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
width: 8px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: hsl(206, 21%, 94%);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: hsl(206, 21%, 94%);
}
p,
h1 {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.hide {
display: none;
}
#searchResult {
visibility: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#SeeMore {
visibility: hidden;
}
#ASeeMore {
visibility: hidden;
}