-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
274 lines (235 loc) · 5.49 KB
/
Copy pathstyles.css
File metadata and controls
274 lines (235 loc) · 5.49 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
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #f2f2f2;
overflow:hidden;
position:relative;
background-image:
url(./icons/background.png);
background-repeat: repeat;
}
@keyframes slide {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}
main {
position:fixed;
top:0%;
left:-2.5%;
}
#overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 3;
background: black;
opacity: 0;
transition: opacity 0.5s ease; /* Transition on opacity property */
}
.logos {
background: none;
overflow-x:hidden;
width:150vw;
height:100%;
white-space: nowrap;
position: relative;
transform:rotate(-10deg);
}
.sitelogo{
display:flex;
transform-origin: top left;
position:fixed;
color:aliceblue;
top:3%;
left:3%;
font-size: 1vw;
align-items: center;
font-family: 'Poppins', sans-serif;
}
.sitelogo img{
height:4vw;
width: 4vw;
border-radius: 25%;
margin-right: 1vw;
border-color: aliceblue;
border-width: 2px;
border-style: solid;
transform-origin: top left;
}
.logos-slide {
display: inline-block;
animation: 60s slide infinite cubic-bezier(0.42, 0, 0.58, 1);
justify-content: center;
align-items: center;
height:25%;
transition: animation-timing-function 1s ease;
}
.extras{
display:flex;
transform-origin: top left;
position:absolute;
z-index: 2;
color:red;
font-weight:bold;
border-top: 0.15vw solid;
border-bottom: 0.15vw solid;
border-image: linear-gradient(to right, rgba(255,0,0,0), red 50%, rgba(255,0,0,0)) 1;
/* Adjust the color values and percentage stops as needed */
border-image-slice: 10;
top:6vw;
left:3%;
font-size: 1vw;
height:2vw;
align-items: center;
font-family: 'Poppins', sans-serif;
}
.extras a:nth-child(4){
border-right: 0px solid;
}
.extras a{
text-decoration: none;
border-right: 0.15vw solid;
padding: 0.25vw;
color:red;
text-shadow: 1px 1px 2px darkred, 0 0 1em darkred, 0 0 0.2em darkred;
border-image: linear-gradient(to top, rgba(255,0,0,0) 30%, red 50%, rgba(255,0,0,0) 70%) 1;
/* Adjust the color values and percentage stops as needed */
border-image-slice: 10;
transition-duration: 0.5s;
}
.extras a:hover{
cursor:pointer;
text-shadow: 0 0 0 red, 0 0 1em red, 0 0 0.2em red;
transition-duration: 0.5s;
}
.logos-slide img {
width:15vw;
height:auto;
margin:2px;
border-radius: 5px;
border-width: 3px;
border-color:rgb(45, 45, 46);
border-style:solid;
transition-duration: 0.3s;
cursor: pointer;
}
.logos-slide img:hover{
overflow: hidden;
transform: scale(1.025);
transition-duration: 0.3s;
}
.sidebar {
position: fixed;
transform-origin: top right;
right: -22%; /* Initially hidden position */
width: 22%;
top:0;
height: 100%;
background: #333;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-end;
overflow-x:hidden;
transition: right 0.7s ease; /* Use right instead of transform for smooth transition */
z-index: 5; /* Place sidebar above content and overlay */
}
.sidebar h1 {
margin-top:15px;
border-top:2px red solid ;
text-align: center;
font-family: 'Poppins', sans-serif;
font-style: italic;
font-size: 2vw;
text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
border-bottom:2px red solid ;
color:aliceblue;
width:100%;
}
.reveal{
position:fixed;
right:1%;
top:2%;
z-index: 10;
background: none;
border:none;
cursor: pointer;
width:3vw;
height:3vw;
transition: right 0.7s ease, transform 0.7s ease;
}
.reveal img{
width: 100%;
height:100%;
filter:invert();
}
.sidebar button{
align-self: center;
height:8%;
border-radius: 10px;
background:none;
border-color: red;
text-shadow: 1px 1px 2px red, 0 0 1em red, 0 0 0.2em red;
color:aliceblue;
font-size: 1.25vw;
font-style:italic;
font-weight: bolder;
margin: 5% 5%;
box-shadow:
0 0 20px rgba(255, 0, 0, 0.75), /* outer shadow */
inset 0 0 20px rgba(255, 0, 0, 0.75); /* inner shadow */
width:90%;
cursor:pointer;
transition-duration: 0.2s;
opacity: 0;
transition: opacity 1s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.sidebar button:hover{
box-shadow:
0 0 3vw rgba(255, 0, 0, 0.75), /* outer shadow */
inset 0 0 3vw rgba(255, 0, 0, 0.75); /* inner shadow */
transition-duration: 0.2s;
transform:scale(1.01);
}
.sidebar a{
width:95%;
align-self: center;
}
.sidebar a img{
width:100%;
margin-top: 10px;
border: solid white 3px;
}
@keyframes glow {
0% {
box-shadow: 0 0 10px rgba(0, 255, 0, 0.7); /* Adjust the color and intensity as needed */
}
50% {
box-shadow: 0 0 20px rgba(0, 255, 0, 0.9);
}
100% {
box-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}
}
.latest{
margin-top:15px;
border-top:2px red solid ;
text-align: center;
font-family: 'Poppins', sans-serif;
font-style: italic;
font-size: 1vw;
text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
border-bottom:2px red solid ;
color:aliceblue;
width:100%;
}