forked from sem720/Join
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroot.css
More file actions
96 lines (79 loc) · 1.35 KB
/
root.css
File metadata and controls
96 lines (79 loc) · 1.35 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
body {
margin: 0;
padding: 0;
font-family: "Inter", sans-serif;
background: #f6f7f8;
padding-left: 240px;
}
html, body {
height: 100vh; /* Default for most browsers */
height: -webkit-fill-available; /* iOS Safari fix */
}
::selection {
background-color: #2598cac5;
color: white;
}
/* Responsive Sidebar */
@media (max-width: 670px) {
body {
padding-left: 0;
}
}
@font-face {
font-family: "Inter";
src: url("./assets/fonts/Inter-VariableFont_opsz\,wght.ttf");
font-style: normal;
}
h1 {
font-family: "Inter", sans-serif;
font-size: 4rem;
line-height: 6.5rem;
margin: 0;
}
h2 {
font-family: "Inter", sans-serif;
font-size: 3rem;
line-height: 4rem;
}
h3 {
font-family: "Inter", sans-serif;
font-size: 1.25rem;
font-weight: 400;
}
h4 {
font-family: "Inter", sans-serif;
}
h5 {
font-family: "Inter", sans-serif;
}
h6 {
font-family: "Inter", sans-serif;
}
a {
font-family: "Inter", sans-serif;
color: #29abe2;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #0295d4;
}
.nav.sidebar-active-tap {
background-color: #091931;
}
/* Landscape mode deactivated */
#landscape-overlay {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: white;
z-index: 9999;
display: none;
}
@media (max-height: 430px) {
#landscape-overlay {
display: block;
}
}