forked from ShimilSAbraham/Hacktoberfest-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (59 loc) · 1.33 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import './css/landing.css';
@import './css/about.css';
@import './css/how.css';
@import './css/team.css';
@import './css/footer.css';
:root{
--light: #f4f0e1;
--dark: #2B3531;
--orange: #f54500;
--orange-active: #db3e00;
--brown: #B53A25;
--l-brown: #A88771;
--grey: #677662;
--l-grey: #91A88C;
--l-blue: #dbe8d9;
}
html{
scroll-behavior: smooth;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-button{
display: none;
}
::-webkit-scrollbar-track {
background: var(--light);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: var(--orange);
transition: 0.3s;
}
::-webkit-scrollbar-thumb:hover {
background: var(--brown);
}
body {
margin: 0;
background: var(--light);
color: var(--dark);
min-height: 100vh;
overflow-x: hidden;
font-family: "Poppins", sans-serif;
display: flex;
flex-direction: column;
}
@media (max-width: 800px){
body{
background-image: url('./img/svg/Hacktober_H.svg');
background-size: 70%;
background-repeat: no-repeat;
background-position: center;
}
.page{
display: none;
}
}