-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.scss
81 lines (62 loc) · 1.12 KB
/
main.scss
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
@use 'vars';
@use 'sidebar';
@use 'topbar';
@use 'bracket';
@use 'about';
* {
margin: 0;
padding: 0;
border: none;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
text-decoration: none;
list-style: none;
scroll-behavior: smooth;
line-height: 1.5;
}
body {
background: linear-gradient(180deg, rgba(0, 0, 0, 1) 20%, rgba(2,0,36,1) 80%, rgba(150,20,20,1) 95%, rgba(255,0,26,1) 100%) no-repeat;
color: white;
}
.hidden {
visibility: hidden;
height: 0;
}
.hidden2 {
display: none;
height: 0px;
}
.button {
color: black;
background-color: white;
padding: 15px 30px;
border-radius: 50px;
font-weight: 800;
font-size: 30px;
border-color: white;
border: 3px solid white;
background-color: black;
color: vars.$color-hover;
filter: drop-shadow(0 0 5px black);
&:hover {
cursor: pointer;
background-color: lighten(vars.$accent-color, 20%);
}
}
#footer {
color: rgba(white, 0.7);
position: absolute;
bottom: 5px;
right: 10px;
text-align: right;
font-size: 12px;
a {
color: inherit;
text-decoration: underline;
opacity: inherit;
&:hover {
cursor: pointer;
color: white;
}
}
}