forked from Soumyajit0803/devbeats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
85 lines (72 loc) · 1.38 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
85
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* css file imports */
@import '/styles/header.css';
@import '/styles/home.css';
@import '/styles/about.css';
:root {
font-family: 'Roboto';
--theme: #e79c25;
--bg1: #1f242a;
--bg2: #364049;
--bg3: #525a67;
--app-width: 1400px;
}
*,
*::before,
*::after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
a {
text-decoration: none;
color: black;
}
li {
list-style-type: none;
}
button {
border: none;
outline: none;
padding: 0.8rem 1rem;
border-radius: 10px;
color: white;
font-weight: bold;
font-size: 0.9rem;
width: max-content !important;
cursor: pointer;
}
.normal-button {
background-color: var(--bg3);
}
.theme-button {
background-color: var(--theme);
}
html {
width: calc(100vw - 5px)
}
body {
/* overflow-x: hidden; */
width: 100%;
display: flex;
justify-content: start;
align-items: center;
flex-direction: column;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-button,
::-webkit-scrollbar-corner {
display: none;
}
::-webkit-scrollbar-thumb {
background-color: var(--theme);
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
width: 5px;
height: 5px;
}