-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
126 lines (107 loc) · 2.15 KB
/
index.css
File metadata and controls
126 lines (107 loc) · 2.15 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
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
body {
/* Disable Selection shits */
user-select: none;
/* Remove scroll bars */
margin: 0;
/* Background */
background-color: #1C1C1C;
min-height: 100vh;
min-width: 100vw;
/* Center Content */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.content {
filter: drop-shadow(0px 2px black );
display: flex;
flex-direction: row;
align-items: center;
}
.logo {
height: 8vw;
width: 8vw;
padding-right: 1vw;
}
.title {
/* Font shit */
font-size: 12vw;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
/* Color of the Text */
color: rgba(255, 255, 255, 255);
background-clip: text;
background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
/* Animate the Text ever so slightly */
animation: hue 30s infinite linear;
}
.linkcontainer {
padding-top: 2vh;
display: flex;
flex-direction: row;
gap: 2vw;
}
.custom-button {
/* smth smth */
height: 5vw;
width: 15vw;
outline: black solid 3px;
background-color: transparent;
transition: 0.3s;
font-size: 3vw;
}
.custom-button:hover {
background-color: rgba(255, 255, 255, 0.705);
outline-offset: 0.3vw;
outline-style: double;
}
.custom-button:active {
transition: 0s;
outline-color: white;
background-color: transparent;
}
/* Animation for the main text */
@keyframes hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
@-webkit-keyframes rainbow {
0% { background-position: 0% 50% }
50% { background-position: 100% 50% }
100% { background-position: 0% 50% }
}
@keyframes rainbow {
0% { background-position: 0% 50% }
50% { background-position: 100% 50% }
100% { background-position: 0% 50% }
}
.nyan-button {
position: absolute;
bottom: 0;
left: 0;
opacity: 0%;
transition: 0.2s;
}
.nyan-button:hover {
cursor: help;
}
.footer {
/* should be centered at the bottom */
position: absolute;
bottom: 0;
opacity: 5%;
transition: 3s;
}
.footer:hover {
opacity: 100%;
transition: 3s;
}
.footer-text {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}