-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (53 loc) · 1.12 KB
/
style.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
body {
background-color: #af0000;
font-family: 'Press Start 2P', cursive;
cursor: url('https://cdn.discordapp.com/attachments/1090262277699141692/1101541017947230260/cursor.png'), auto;
cursor: url('cursor.png'), auto;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.signature {
width: 200px;
}
h1 {
font-size: 48px;
color: #000;
margin-bottom: 40px;
opacity: 0;
animation: pop-in 0.75s ease forwards;
}
.welcome-btn {
background-color: #000;
color: #af0000;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 24px;
cursor: pointer;
transition: all 0.3s ease-in-out;
opacity: 0;
animation: pop-in 0.75s ease forwards;
text-decoration: none;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.096);
}
.welcome-btn:hover {
background-color: #af0000;
color: #000;
border: 2px solid #000;
text-decoration: none;
}
@keyframes pop-in {
0% {
opacity: 0;
transform: scale(0.8);
}
100% {
opacity: 1;
transform: scale(1);
}
}