-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (80 loc) · 1.7 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
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
body {
background-color: #24273a;
}
::-webkit-scrollbar {
display: none;
}
.profilepic {
width: 12%;
border-radius: 50%;
margin: 0 auto;
display: block;
margin-top: 2%;
margin-bottom: 2%;
}
.nick {
font-size: 2.5em;
text-align: center;
margin-bottom: 1%;
}
.description {
font-size: 1.5em;
text-align: center
}
.button-container {
flex-direction: column;
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
color: #7dc4e4;
}
.links {
align-items: center;
text-align: center;
appearance: none;
background-color: transparent;
border: 2px solid #494d64;
border-radius: 15px;
box-sizing: border-box;
color: #7dc4e4;
cursor: pointer;
display: inline-block;
font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size: 16px;
font-weight: 600;
line-height: normal;
margin: 0;
min-height: 60px;
min-width: 0;
outline: none;
padding: 16px 24px;
text-decoration: none;
transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: 50%;
will-change: transform;
}
.links:disabled {
pointer-events: none;
}
.links:hover {
color: #fff;
background-color: #45475a;
box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
transform: translateY(-2px);
}
.links:active {
box-shadow: none;
transform: translateY(0);
}
.footer {
background-color: #24273a;
text-align: center;
margin-top: 2%;
color: #7dc4e4;
border: none;
box-shadow: none;
}