1
0
Fork 0
mayvaneday/style.css

131 lines
1.8 KiB
CSS
Raw Normal View History

2022-06-06 03:53:21 +02:00
<!--
2023-04-25 22:39:34 +02:00
/* "Regalia" for Layout V4 */
2021-11-13 03:02:11 +01:00
body {
2023-04-25 22:39:34 +02:00
background-color: #5c7e70;
2021-11-13 03:02:11 +01:00
font-family: monospace;
color: #FFFFFF;
max-width:900px;
margin: auto;
font-size: large;
margin-bottom: 10px;
}
2022-07-30 04:30:55 +02:00
.center {
text-align: center;
}
2021-11-13 19:58:35 +01:00
.index {
max-width: 551px;
2021-11-13 19:58:35 +01:00
}
2021-11-13 03:02:11 +01:00
a, a:visited {
color: inherit;
}
2023-04-25 22:39:34 +02:00
.box, .card, nav, .check {
2021-11-13 03:02:11 +01:00
margin-top: 3%;
margin-left: auto;
margin-right: auto;
padding: 10px 10px 5px 20px;
}
2023-04-25 22:39:34 +02:00
.box, .card, nav {
background: #000000;
}
.check {
background: #1114;
}
2021-11-13 03:02:11 +01:00
.box-smaller {
max-width: 700px;
}
table {
width: 100%;
padding: 3px;
}
2022-02-14 17:52:47 +01:00
article a, ul a, td a, .bruh {
2021-11-13 03:02:11 +01:00
text-decoration: underline;
}
pre {
font-size: small;
overflow: auto;
}
2021-11-13 03:02:11 +01:00
hr {
display: none;
}
b, strong {
2023-04-25 22:39:34 +02:00
color: yellow;
}
code {
2023-04-25 22:39:34 +02:00
color: violet;
2021-11-13 03:02:11 +01:00
}
i, em {
2023-04-25 22:39:34 +02:00
color: red;
2021-11-13 03:02:11 +01:00
}
td {
text-align: center;
}
2021-11-13 03:02:11 +01:00
img.big {
2022-12-31 19:43:57 +01:00
max-width: 100%;
2021-11-13 03:02:11 +01:00
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
2021-11-13 03:02:11 +01:00
}
2022-02-14 17:52:47 +01:00
2022-07-30 04:30:55 +02:00
/* https://www.svgrepo.com/svg/6977/star */
.based {
list-style: url('./css/star.svg');
}
2022-02-14 17:52:47 +01:00
/* https://orangeable.com/css/animated-gradient-text */
.lesbian {
background: linear-gradient(-45deg, #D52D00, #EF7627, #FF9A56, #FFFFFF, #D162A4, #B55690, #A30262);
background-size: 300%;
font-weight: bold;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: animated_text 8s ease-in-out infinite;
-moz-animation: animated_text 8s ease-in-out infinite;
-webkit-animation: animated_text 8s ease-in-out infinite;
}
@keyframes animated_text {
0% { background-position: 0px 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0px 50%; }
}
2022-06-06 03:53:21 +02:00
/* http://xjfbpuj56rdazx4iolylxplbvyft2onuerjeimlcqwaihp3s6r4xebqd.onion/about-foogallery-video/ */
#player-overlay {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000;
z-index: 999;
}
video {
display: block;
width: 100%;
height: 100%;
}
2022-06-06 03:53:21 +02:00
-->