-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
135 lines (127 loc) · 2.59 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
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
129
130
131
132
133
134
135
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
background: linear-gradient(to right, #6a012c, #00001f, #000189);
overflow-x: hidden;
}
@media (max-width: 768px) {
body {
background: linear-gradient(to bottom, #6a012c, #00001f, #000189);
}
}
@media (max-width: 480px) {
body {
background: linear-gradient(to bottom, #6a012c, #00001f, #000189);
}
}
.styled-frame {
border-radius: 20px;
border: none;
margin: 0 auto;
width: 70%;
max-width: 500px;
max-height: 300px;
height: 70%;
padding-top: 15px;
padding-bottom: 15px;
}
@media (max-width: 768px) {
.styled-frame {
width: 90%;
height: 90%;
}
}
@media (max-width: 480px) {
.styled-frame {
width: 100%;
width: 100%;
}
}
.pfp {
border-radius: 50%;
border: 2px solid #fff;
box-shadow: 0 0 0 2px #000;
width: 200px;
height: 200px;
z-index: 998;
}
.pfp:hover {
box-shadow: 0px 0px 35px 7px rgba(228, 228, 228, 0.5);
}
.header, .footer {
background-color: rgba(48, 48, 48, 0.7);
color: #fffefe;
text-align: center;
padding: 10px;
border-radius: 20px;
font-size: 20px;
margin: 10px;
font-family: 'Oswald', sans-serif;
margin: 0 auto;
}
.footer a {
color: rgb(255, 255, 255);
text-decoration: none;
font-size: 24px;
display: inline-block;
margin-right: 20px;
}
.header {
padding-top: 10px;
padding-bottom: 10px;
}
.footer img {
transition: transform 0.3s ease-in-out;
filter: invert(1);
}
.footer img:hover {
transform: scale(1.2);
transition: transform 0.3s ease-in-out;
filter: invert(1);
}
.gradient-text {
background: linear-gradient(to right, #ebd197, #b48811, #a2790d);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.subcount {
background: linear-gradient(to right, #c0392b,#8e44ad);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.go-back:hover {
transform: scale(1.05);
transition: transform 0.3s ease-in-out;
color: #fff;
width: fit-content;
height: fit-content;
padding: 7px;
text-align: center;
margin: 0 auto;
line-height: 2;
font-family: 'Oswald', sans-serif;
}
.go-back {
transition: transform 0.3s ease-in-out;
color: #fff;
border-radius: 15px;
width: fit-content;
height: fit-content;
padding: 7px;
display: block;
text-align: center;
margin: 0 auto;
line-height: 2;
font-family: 'Oswald', sans-serif;
}
@font-face {
font-family: 'Oswald';
src: url('images/oswald-regular.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}