-
Notifications
You must be signed in to change notification settings - Fork 318
Expand file tree
/
Copy pathapp.css
More file actions
123 lines (102 loc) · 1.75 KB
/
app.css
File metadata and controls
123 lines (102 loc) · 1.75 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
120
121
122
123
@import "/src/data/styles.css";
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background-color: var(--secondary-background);
}
::-webkit-scrollbar-thumb {
background-color: #383636;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgb(0, 0, 0);
}
.page-content {
background-color: var(--secondary-background);
position: relative;
}
.page-content:before,
.page-content:after {
content: "";
position: absolute;
top: 0;
bottom: 0;
width: calc((100% - 1200px) / 2);
background-color: var(--background);
border: 1px solid var(--border-color);
}
.page-content:before {
left: 0;
z-index: 1;
}
.page-content:after {
right: 0;
z-index: 1;
}
.content-wrapper {
max-width: 1000px;
margin: 0 auto;
}
.title {
color: var(--primary-color);
font-family: var(--secondary-font);
font-size: 45px;
font-weight: 700;
width: 70%;
}
.subtitle {
padding-top: 10px;
color: var(--secondary-color);
font-size: 16px;
line-height: 28px;
width: 70%;
margin-top: 25px;
}
.page-footer {
position: block;
}
.page-footer::before {
content: "";
position: absolute;
left: 0;
right: 0;
border-top: 2px solid var(--tertiary-color);
}
@media (max-width: 1270px) {
.page-content:before,
.page-content:after {
width: calc((100% - 90%) / 2);
}
.content-wrapper {
max-width: 90%;
padding-left: 10%;
padding-right: 10%;
}
}
@media (max-width: 1024px) {
.page-content:before,
.page-content:after {
width: calc((100% - 950px) / 2);
}
.content-wrapper {
max-width: 980px;
}
}
@media (max-width: 800px) {
.content-wrapper {
max-width: 90%;
margin: 0 auto;
padding: 0 10px;
}
.page-content:before,
.page-content:after {
display: none;
}
.title {
width: 100%;
}
.subtitle {
width: 100%;
}
}