This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
154 lines (128 loc) · 2.77 KB
/
app.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
* {
transition: ease background .3s;
}
body.darkmode, body.darkmode aside.sidebar, body.darkmode .sidebar-toggle {
background-color: #2a2a2a !important;
color: #cecece !important;
}
body.darkmode .cover-main {
color: rgb(255, 255, 255);
}
body.darkmode .cover.show {
background: linear-gradient(to left bottom, hsl(17, 6%, 23%) 0%,hsl(177, 96%, 21%) 100%) !important;
}
body.darkmode aside.sidebar {
border-right: 1px solid #424242 !important;
}
body.darkmode aside.sidebar li > p {
color: #ffffff !important;
}
body.darkmode aside.sidebar li a {
color: #cecece !important;
}
body.darkmode h1 *,
body.darkmode h2 *,
body.darkmode h3 *,
body.darkmode h4 *,
body.darkmode h5 *,
body.darkmode h6 *,
body.darkmode strong {
color: #ffffff !important;
}
body.darkmode pre, body.darkmode code {
background-color: #3a3a3a;
}
body.darkmode code .token.constant,
body.darkmode code .token.operator {
color: rgb(189, 143, 83);
}
body.darkmode code .token.keyword {
color: #a567be !important;
}
body.darkmode code .token.variable {
color: #f56363;
}
body.darkmode code .token.class-name,
body.darkmode code .token.punctuation,
body.darkmode code .token.package
{
color: #cecece;
}
body.darkmode code .token.function {
color: #629bca;
}
body.darkmode code.lang-bash,
body.darkmode code.lang-sh,
body.darkmode code.lang-htaccess,
body.darkmode code.lang-nginx,
body.darkmode code.lang-env
{
color: #cecece;
}
body.darkmode .input-wrap input {
color: #cecece;
background-color: #2a2a2a !important;
}
body.darkmode .input-wrap input::placeholder {
color: #7a7a7a;
}
.toggle-mode {
position: fixed;
bottom: 35px;
right: 30px;
z-index: 100;
}
.version-cards {
display: flex;
justify-content: space-between;
width: 100%;
flex-wrap: wrap;
margin-bottom: 50px;
}
.version-card {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #cecece;
border-radius: 4px;
max-width: 33%;
width: 100%;
padding: 40px 0px;
cursor: pointer;
text-decoration: none;
position: relative;
margin-bottom: 10px;
}
.version-card .tag {
position: absolute;
right: 0;
top: 0;
padding: 10px;
background-color: var(--theme-color, #42b983);
color: white;
font-weight: bold;
}
.tag {
font-size: 16px;
}
.tag.-beta {
background-color: #d6a812;
}
.version-cards small, h2 {
margin: 0 !important;
}
@media only screen and (max-width: 1000px) {
.version-card {
max-width: 49.5% !important;
margin-bottom: 10px;
}
}
@media only screen and (max-width: 500px) {
.version-card {
max-width: 100% !important;
}
.version-cards {
flex-direction: column;
}
}