-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.css
106 lines (84 loc) · 1.69 KB
/
base.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
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*, *::before, *::after {
box-sizing: border-box;
}
* {margin: 0;}
body, html {
height: 100%;
margin: 0;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
}
input, button, textarea, select {
font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}
mark {
background-color: var(--cyan);
}
:root{
--green: #a6d189;
--yellow: #e5c890;
--cyan: #74c7ec;
--bg: #1e1e2e;
--lilac: #cba6f7;
--tp: #cdd6f4;
--ct : #181825;
}
body{
background-color: var(--bg);
font-family: 'Anonymous Pro', sans-serif;
color: var(--tp);
text-align: center;
}
p {
color: var(--tp);
font-size: 1.2rem;
}
h1 {
font-size: 2em;
color: var(--lilac);
}
h2 {
font-size: 1.8em;
margin-top: 2px;
}
h3 {
font-size: 1.3em;
margin-top: 2px;
}
a{
color: var(--cyan);
transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
font-weight: bold;
}
a:hover {
box-shadow: inset 150px 0 0 0 var(--cyan);
color: var(--ct);
}
strong { color: var(--cyan);}
button {
background-color: var(--lilac);
color: var(--bg);
padding: 10px 20px;
font-size: 1.3em;
font-weight: bold;
border-radius: 10px;
margin: 10px;
}
button:hover {
background-color: var(--cyan);
transform: scale(1.2);
}
.hidden{visibility: hidden;}
.bg-blur {background: rgba(0, 0, 0, 0.8);}
.green{color: var(--green);}
.liliac{color: var(--lilac);}
.tcenter{text-align: center;}
.tleft{text-align: left;}