-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (75 loc) · 1.46 KB
/
style.css
File metadata and controls
89 lines (75 loc) · 1.46 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
html {
background-color: rgb(25, 25, 30);
color: rgb(181, 181, 227);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
margin: 0px;
}
.center {
text-align: center;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.pfp {
width: 96px;
height: 96px;
border-radius: 96px;
}
.name_pfp {
width: 100%;
justify-content: center;
display: flex;
gap: 15px;
}
.name_pfp img {
filter: drop-shadow(0px 0px 15px rgba(255, 219, 148, 0.5));
}
.name_pfp h1 {
filter: drop-shadow(0px 0px 15px rgba(181, 181, 227, 0.5));
}
.button-row {
display: flex;
justify-content: center;
gap: 10px;
}
.center h1 {
font-size: 72px;
align-self: center;
margin: 0px;
}
.center p {
margin-top: 15px;
text-align: center;
margin-bottom: 25px;
font-size: 17px;
}
.button-row button {
padding: 15px;
cursor: pointer;
background-color: rgb(181, 181, 227);
color: rgb(25, 25, 30);
border-radius: 50px;
font-weight: bold;
font-size: 15px;
border: none;
transition: 0.1s all;
}
.button-row button:hover{
background-color: rgb(189, 189, 230);
transition: 0.1s all;
}
.button-row button:active{
background-color: rgb(170, 170, 207);
transition: 0.1s all;
}
#waves {
position: fixed;
display: inline;
width: 100%;
height: 100%;
opacity: 0.1;
}