-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (100 loc) · 2.06 KB
/
style.css
File metadata and controls
119 lines (100 loc) · 2.06 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
:root {
--clr-main: #4589FF;
--clr-text-menu: #42526E;
--clr-text-good-morning: #2A3647;
--clr-text-menu-hover: #E3EEFF;
--clr-button-todo: #d2e3ff;
--clr-text-medium-blue: #005dff;
--clr-input-focus: #0D99FF;
--clr-icon: #A8A8A8;
--clr-style-lightgrey: #D1D1D1;
--clr-style-lightblue: #29ABE2;
--sb-track-color: #ffffff;
--sb-thumb-color: #a8a8a8;
--sb-size: 16px;
}
* {
margin: 0;
box-sizing: border-box;
font-family: "Open Sans", sans-serif;
/* disable text-selection */
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
html {
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.header {
box-shadow: 0 2px 5.5px rgba(0, 0, 0, 0.2);
width: 100%;
z-index: 100;
}
.main-wrapper {
display: flex;
flex-direction: row;
height: calc(100vh - 96px);
max-width: 1440px;
width: 100%;
}
.main {
display: flex;
width: 100%;
height: 100%;
overflow: auto;
}
.bodyContent {
display: flex;
flex-direction: column;
width: 100%;
position: relative;
height: 100%;
}
a {
text-decoration: none;
cursor: pointer;
}
::-webkit-scrollbar {
width: var(--sb-size)
}
::-webkit-scrollbar-track {
background: var(--sb-track-color);
border-radius: 18px;
}
::-webkit-scrollbar-thumb {
background: var(--sb-thumb-color);
border-radius: 18px;
border: 4px solid #ffffff;
}
*::-webkit-scrollbar-button:single-button:vertical:decrement {
background-image: url("./assets/img/arrow_up.png");
scroll-padding-top: 20px;
background-repeat: no-repeat;
background-position: center;
}
*::-webkit-scrollbar-button:single-button:vertical:increment {
background-image: url("./assets/img/arrow_down.png");
margin-bottom: 20px;
background-repeat: no-repeat;
background-position: center;
}
.end-of-page {
margin-bottom: 80px;
}
.d-none {
display: none;
}
.hide-scroll {
scrollbar-width: none;
}
@media screen and (max-width: 801px) {
.main-wrapper {
height: calc(100vh - 145px);
}
}