-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
92 lines (80 loc) · 1.65 KB
/
default.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
:root {
--bg: #222222;
--main: #333333;
--text: #ffffff;
--accent: #e27b4c;
--accent2: #82dd37;
--roundness: 8px;
--banner-height: 48px;
}
body {
background: var(--bg);
color: var(--text);
margin: 0px;
margin-inline: 16px;
line-height: 1.5;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1 {
font-size: 24pt;
margin-inline: 5%;
}
h2 {
font-size: 18pt;
margin-inline: 5%;
}
h3 {
font-size: 16pt;
margin-inline: 5%;
}
p {
font-size: 12pt;
margin-inline: 5%;
}
li {
margin-inline: 5%;
}
img {
width: 80%;
max-width: 960px;
border-radius: var(--roundness);
}
hr {
margin: 32px;
margin-inline: 10%;
}
.banner {
background-image: linear-gradient(to bottom right, var(--accent), var(--accent2));
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-size: 40pt;
padding: var(--banner-height);
font-weight: bold;
color: var(--text);
box-shadow: var(--shadows) 0px 0px 50px;
line-height: 120%;
border-radius: calc(var(--roundness) * 2);
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.root {
max-width: fit-content;
margin-inline: auto;
}
.box {
margin: var(--roundness);
align-items: center;
background-color: var(--main);
padding: 10pt;
border-radius: var(--roundness);
text-align: start;
max-width: 960px;
transition: all, 0.5s;
}
.center {
justify-content: center;
align-items: center;
text-align: center;
}