forked from MercuryWorkshop/sh1mmer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
129 lines (111 loc) · 2 KB
/
main.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
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk&family=Sofia+Sans&family=Exo:wght@500&display=swap");
/* use vars bypassi! */
:root {
--white: #e6d8ff;
--font: #e6d8ff;
--light:#a791e8;
--dark2:#59498a;
--dark1:#946adc;
}
* {
box-sizing: border-box;
margin: 0px;
padding: 0px;
font-family: "Exo", sans-serif;
}
@keyframes scroll {
0% {
background-position: 0px 0px;
}
100% {
background-position: -1359px 0px;
}
}
.header {
background-repeat: no-repeat;
background-image: url("/assets/background_min.png");
background-size: 540px 100%;
background-repeat: repeat-x;
text-align: center;
padding: 50px 5vw;
color: var(--font);
animation: scroll 60s linear infinite;
}
.header h1 {
font-size: 15vw;
font-family: "Sofia Sans", sans-serif;
}
.header .acronym {
font-size: 35px;
}
.section {
padding: 50px 5vw;
color: var(--font);
}
.section.blue {
background-color: var(--light);
}
.section.green {
background-color: var(--dark1);
}
*::selection {
background-color: var(--dark2);
}
h3 {
font-family: "Space Grotesk", monospace;
font-size: 50px;
}
p,
li,
img {
margin-top: 30px;
font-size: 25px;
}
u {
cursor: pointer;
}
kbd {
font-family: "Space Grotesk", monospace;
background-color: var(--dark2);
color: var(--white);
white-space: nowrap;
font-size: 90%;
border-radius: 10px;
padding: 3px;
vertical-align: middle;
}
kbd::selection{
background-color: var(--light);
}
hr {
width: 500px;
max-width: 100%;
border: 3px solid var(--white);
margin: 40px 0px;
}
img {
width: 500px;
max-width: 100%;
border: 3px solid var(--white);
vertical-align: top;
border-radius: 10px;
}
spc {
margin-right: 10px;
}
a {
background-color: var(--white);
color: black;
border: none;
font-size: 90%;
text-decoration: none;
white-space: nowrap;
border-radius: 10px;
font-family: "Sofia Sans", sans-serif;
padding: 5px 10px;
max-width: 100%;
transition: filter 250ms;
}
a:hover {
filter: brightness(80%);
}