-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreset.css
73 lines (61 loc) · 1.24 KB
/
reset.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
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
:root{
--red: #E62C32;
--red_hover: #D14836;
--black: #0c0f12;
--bg: #12161C;
--white: #FFF;
--card_bg: #181E25;
--card_bg_hover: rgba(255, 255, 255, .07);
}
*{
margin: 0;
padding: 0;
font-family: 'Rubik', sans-serif;
outline: none;
}
*:focus {
outline: none;
}
*::selection{
background: var(--red);
color: var(--white);
}
*::-webkit-scrollbar{
width: 10px;
height: 5px;
background-color: transparent;
cursor: pointer;
}
*::-webkit-scrollbar-track{
background-color: transparent;
}
*::-webkit-scrollbar-thumb{
background: var(--card_bg);
}
*::-webkit-scrollbar-thumb:hover{
background: var(--card_bg_hover);
}
html {
scroll-behavior: smooth;
}
body{
background: var(--bg);
color: var(--white);
}
a{
text-decoration: none;
transition: all .5s;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
}
img{
object-fit: cover;
transition: all .5s;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
}