-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (63 loc) · 1.41 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
html {
--scrollbarBG: #FFC0CB;
--thumbBG: #C90076;
}
body::-webkit-scrollbar {
width: 11px;
}
body {
scrollbar-width: thin;
scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar-track {
background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
background-color: var(--thumbBG) ;
border-radius: 6px;
border: 3px solid var(--scrollbarBG);
}
h1 {
color: white;
font-family: 'Andy', 'Marquisette BTN', "Comic Sans MS", 'Lucida Sans', 'Times New Roman', sans-serif;
font-size: 288%;
font-weight: bold;
text-decoration: underline;
text-align: center;
}
body {
background-color: rgb(64, 73, 121);
}
h3 {
font-size: medium;
color: white;
}
.desc {
font-size: 118.71%;
color: white;
}
.pink {
color: lightpink;
font-size: medium;
font-weight: bold;
}
.test {
padding-top: 45px;
box-sizing: border-box;
}
.btn-group {
background-color: #4CAF50; /* Green background */
border: 1px solid green; /* Green border */
color: white; /* White text */
padding: 10px 24px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */
float: left; /* Float the buttons side by side */
text-decoration: none;
}
.btn-group a:not(:last-child) {
border-right: none; /* Prevent double borders */
}
/* Add a background color on hover */
.btn-group:hover {
background-color: #3e8e41;
}