-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathApp.css
More file actions
88 lines (72 loc) · 1.34 KB
/
App.css
File metadata and controls
88 lines (72 loc) · 1.34 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
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Livvic:wght@600&display=swap');
body {
background-color: #33374D !important;
height: 100%;
}
.logo-title {
font-family: 'Alfa Slab One', cursive;
color: #B685FF;
font-size: 20px;
}
.logo-subtitle {
font-family: 'Livvic', sans-serif;
color: #FFFFFF;
font-size: 11px !important;
}
h1 {
font-family: 'Alfa Slab One', cursive;
color: #B685FF;
font-size: 20px !important;
cursor: default;
user-select: none;
}
h2 {
font-family: 'Livvic', sans-serif;
color: #FFF;
cursor: default;
user-select: none;
}
h4 {
font-family: 'Livvic', sans-serif;
color: #FFF;
font-size: 15px !important;
cursor: default;
user-select: none;
}
.logo {
width: 200px;
}
.category-title {
font-family: 'Livvic', sans-serif;
color: #FFFFFF;
font-size: 26px !important;
background-color: #1F2A3D;
cursor: default;
user-select: none;
}
.mobile-footer {
display: none !important;
}
.sidebar-desktop {
display: relative !important;
}
@media only screen and (max-width: 768px) {
h1 {
font-size: 36px !important;
}
h2 {
font-size: 22px !important;
}
.logo {
width: 150px;
}
.mobile-footer {
display: flex !important;
}
.sidebar-desktop {
display: none !important;
}
.footer {
margin-bottom: 120px;
}
}