-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
63 lines (54 loc) · 1.25 KB
/
styles.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
/* gabarito my beloved */
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');
/* mobile solid background */
body { background-color: #0E0C15; }
/* the real stuff */
#mainbox {
/* basic text coloring/style */
color: #A387FF;
font-family: "Gabarito", sans-serif;
background-color: #0E0C15;
padding: 4vh;
h1,h2,h3 { color: #D7CCFF; }
ul { list-style-type: "✦ "; }
/* logo silliness */
.logo {
width: 12vh;
height: 12vh;
border: 5px solid #A387FF;
border-radius: 100%;
transition: transform 750ms;
}
.logo:hover { transform: rotate(360deg); }
/* link coloring */
a {
color: #cf87ff;
transition: color 0.3s ease;
text-decoration: none;
svg {
width: 4vh;
height: 4vh;
padding: 0 2vh 0 0;
fill: #cf87ff;
transition: fill 0.3s ease;
}
svg:hover { fill: #ebceff; }
}
a:hover { color: #ebceff; }
}
/* desktop */
@media screen and (min-width: 900px) {
body {
background-image: url('space.gif');
background-size: 2160px 1428px;
}
#mainbox {
width: 40%;
height: 40%;
margin: 10% auto 10% auto;
word-wrap: break-word;
border: 5px solid #A387FF;
border-radius: 20px;
}
.sorry { display: none; }
}