-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (108 loc) · 2.18 KB
/
style.css
File metadata and controls
128 lines (108 loc) · 2.18 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
127
128
body {
background-color: black;
color: white;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
padding-top: 20vh;
padding-bottom: 30vh;
padding-left: 10vw;
padding-right: 10vw;
}
h1 {
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 900;
font-style: normal;
font-size: 4em;
text-align: center;
margin-bottom: .25em;
}
h2 {
padding-top: 30vh;
text-align: center;
font-size: 2.5em;
}
p {
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 600;
font-style: normal;
margin-bottom: 3em;
color: rgb(158, 158, 158);
}
a {
display: block-inline;
margin-bottom: 5px;
vertical-align: top;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 600;
font-style: normal;
color: rgb(158, 158, 158);
}
button {
margin: 0 auto;
position: relative;
padding: 20px 35px;
background: #ffffff;
font-size: 20px;
font-weight: 600;
color: #000000;
border-radius: 100px;
border: none;
transition: all 0.3s ease-in-out;
cursor: pointer;
}
.profile-img {
border-radius: 10em;
width: 12em;
height: 12em;
}
.icon {
filter: invert(0.75);
width: 20px;
height: 20px;
margin-left: 0.5em;
}
@keyframes textShine {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}
.cursor-gradient {
display: flex;
justify-content: center;
align-items: center;
width: 850px;
height: 850px;
border-radius: 100%;
background-image: linear-gradient(#0e0e0e 10%, #3a3a3a);
filter: blur(250px);
transition: all 450ms ease-out;
position: fixed;
pointer-events: none;
left: 0;
top: 0;
transform: translate(calc(-50% + 15px), -50%);
z-index: -1;
}
.center {
justify-content: center;
display: flex;
}
::-webkit-scrollbar {
width: 10px;
background: transparent;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, yellow, orange);
border-radius: 10px;
}