-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
196 lines (162 loc) · 4.23 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
@import url('https://fonts.googleapis.com/css2?family=Alegreya+SC:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,700;1,800;1,900&family=Amor+Luz&family=Lujoso+Romano&family=Major+Mono+Display&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sedan+SC&display=swap');
@keyframes gradientAnimation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.sedan-sc-regular {
font-family: "Sedan SC", serif;
}
html {
scroll-behavior: smooth;
color: white;
}
#hero {
background: linear-gradient(to bottom right, #080808d3, #fffdfd);
padding: 1px;
}
.hero_title{
text-decoration: overline underline;
position: relative;
transition: box-shadow 0.9s ease, transform 0.5s ease;
transform: scale(1);
cursor: pointer;
}
.hero_title:hover {
box-shadow: 0 0 25px rgb(255, 255, 255);
transform: scale(1.1) translateZ(20px);
}
h1 {
display: flex;
justify-content: center;
font-family: 'Alegreya SC', serif;
transition: transform 0.5s ease, text-shadow 0.5s ease;
}
#hero img {
width: 50px;
margin-bottom: 10px;
}
h1 span {
display: inline-block;
transition: transform 0.5s ease, text-shadow 0.2s ease;
}
h1 span:hover {
transform: scale(1.2) rotate(25deg);
}
.social-icons {
display: flex;
justify-content: center;
}
.social-icons img {
color: white;
margin: 0 10px;
transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons img:hover {
border: 2px solid black;
border-radius: 15px;
box-shadow: 0 0 25px rgb(255, 255, 255), 0 0 15px rgb(255, 255, 255) inset;;
transform: scale(1.1) translateZ(20px);
}
.color1:hover {
text-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.4);
}
.color2:hover {
text-shadow: 0 0 10px rgba(0, 255, 0, 0.8), 0 0 20px rgba(0, 255, 0, 0.6), 0 0 30px rgba(0, 255, 0, 0.4);
}
.color3:hover {
text-shadow: 0 0 10px rgb(0, 0, 255), 0 0 20px rgba(0, 0, 255, 0.6), 0 0 30px rgb(0, 0, 255);
}
.color4:hover {
text-shadow: 0 0 10px rgba(255, 255, 0, 0.8), 0 0 20px rgba(255, 255, 0, 0.6), 0 0 30px rgba(255, 255, 0, 0.4);
}
.color5:hover {
text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}
body {
background-color: rgb(0, 0, 0);
height: 100%;
margin: 0;
background: repeating-linear-gradient(100deg,#3b3b3b, #000000f5);
background-size: 400% 400%;
animation: gradientAnimation 15s ease infinite;
}
#container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.section {
width: 300px;
height: auto;
border: 1px solid rgb(255, 255, 255);
border-radius: 15px;
overflow: hidden;
background-color: white;
text-align: center;
position: relative;
opacity: 0;
top: 50px;
margin-bottom: 40px;
transition: box-shadow 0.5s ease, transform 0.5s ease, opacity 6s ease;
transform: scale(1);
cursor: pointer;
background: linear-gradient(to bottom right, #070707, #8b8989fb);
}
.section.appear {
opacity: 1.9;
}
.section:hover {
box-shadow: 0 0 25px rgb(255, 255, 255), 0 0 15px rgb(255, 255, 255) inset;;
transform: scale(1.1) translateZ(20px);
}
.section img {
max-width: 100%;
margin-bottom: 0;
}
.section_title {
background: linear-gradient(to bottom right, #666666, #bdbcbc);
display: flex;
justify-content: space-between;
}
.subtitle {
margin: 5px;
font-size: 18px;
}
.date {
color: rgb(59, 59, 59);
font-size: 14px;
margin: 5px;
}
footer {
background: linear-gradient(to bottom right, #070707, #ffffff);
text-align: start;
font-size: 16px;
padding: 1px;
}
.tooltip {
position: relative;
display: inline-block;
cursor: pointer;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
text-align: center;
border-radius: 10px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 105%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.6s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}