-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (120 loc) · 2.66 KB
/
style.css
File metadata and controls
121 lines (120 loc) · 2.66 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
@font-face { font-family: Panton\ Black\ Caps; src: url(Panton\ Black\ Caps.ttf); }
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
*{
margin: 0px;
padding: 0px;
}
*::selection {
color:white;
background-color: transparent;
}
body {
background-image: url("/images/background.png");
}
.box {
text-align: center;
width: 400px;
height: 390px;
backdrop-filter: blur(25px);
border-radius: 20px;
margin-left: calc(50% - 200px);
margin-top: 140px;
background-image: linear-gradient(rgba(0, 0, 0, 0.39),rgba(0, 0, 0, 0.39));
}
.box #pfp {
width: 80px;
height: 80px;
border-radius: 10px;
transition: transform 2s;
}
.box #pfp:hover {
transform: rotate(360deg);
border-radius: 50%;
}
.box #name {
font-family: "Panton Black Caps", sans-serif;
background: linear-gradient(110deg,rgb(255, 0, 0),rgb(17, 0, 255));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: nameColored 5s linear infinite;
}
@keyframes nameColored {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(360deg);
}
}
.box #description {
font-family: 'Source Code Pro',sans-serif;
font-size: 22px;
font-weight: 600;
color:black;
animation: descriptionColored 5s linear infinite;
}
@keyframes descriptionColored {
from {
color:rgb(231, 229, 229);
}
to {color:rgba(199, 199, 199, 0.726);}
}
.box .connections #git-hub,#telegram,#x,#twitch {
transition: transform 1s;
color:white;
}
.box .connections #git-hub:hover {
transform: scale(1.1);
color:rgb(122, 39, 122);
}
.box .connections #telegram:hover {
transform: scale(1.1);
color:rgb(0, 153, 255);
}
.box .connections #x:hover {
transform: scale(1.1);
color:gray;
}
.box .connections #twitch:hover {
transform: scale(1.1);
color:#6441a5;
}
.box .status {
width: 95%;
background-color: black;
margin-left: calc(50% - 47.5%);
border-radius: 20px;
height: 110px;
}
.box .status #discord-pfp {
margin-left: -60%;
margin-top: 10px;
}
.status .discord-info {
margin-top: -90px;
}
.status .discord-info #ds-name {
color:white;
font-family: "Panton Black Caps", sans-serif;
}
@media screen and (max-width: 500px) {
.box {
width: 85%;
margin-left: calc(50% - 42.5%);
}
}
@media screen and (max-width: 360px) {
.status .discord-info {
margin-left: 20px;
}
}
@media screen and (max-width: 325px) {
.box {
height: 420px;
}
}
@media screen and (max-width: 296px) {
.box {
height: 470px;
}
}