-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (84 loc) · 2.13 KB
/
style.css
File metadata and controls
94 lines (84 loc) · 2.13 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body
{
background: linear-gradient(45deg,#69c1db,#54acc7,#6fcae6,#7fcae0) fixed;
}
h1
{
font-family: 'Ubuntu';
overflow: visible !important;
}
p, ul
{
font-family: 'Poppins';
font-weight: 300;
}
code, code p
{
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}
code{background-color: #11182744;}
::-webkit-scrollbar {
display: block;
position: absolute;
left: 50%; transform: translateX(-50%);
width: .5em;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #0b4253;
}
::-webkit-scrollbar-thumb {
background-color: rgb(2, 75, 97);
}
.center
{
position: absolute;
left: 50%; top: 50%;
transform: translate(-50%, -50%);
}
.container {
display: grid;
max-height: 110vh;
grid-template-columns: 1.3fr 1.3fr;
grid-template-rows: 1.6fr 1.6fr;
gap: 0px 0px;
grid-template-areas:
"cat-1 cat-2"
"cat-3 cat-4";
}
.cat-1 { grid-area: cat-1; }
.cat-2 { grid-area: cat-2; }
.cat-3 { grid-area: cat-3; }
.cat-4 { grid-area: cat-4; }
@media only screen and (max-width: 425px) {
header h1{margin-bottom: 25px !important;line-height: 2.6rem !important;}
li{max-width: 90vw;}
code{line-break: anywhere;}
ul{height: fit-content !important; margin: 10% 0 !important;}
.container {
max-height: fit-content !important;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
gap: 0px 0px;
grid-template-areas:
"cat-1"
"cat-2"
"cat-3"
"cat-4";
}
.container>*
{
max-width: 90% !important;
position: relative;
top: 0; left: 0;
transform: translate(0, 0);
}
.cat-2
{
position: relative;
top: 50%; left: 50%;
transform: translate(-50%, -50%) !important;
}
}