mezza.biz/_includes/styles/style.scss

123 lines
2 KiB
SCSS
Raw Normal View History

2023-02-25 19:38:19 +00:00
* {
box-sizing: border-box;
}
html {
--accent: #ed1c24;
--foreground: #000;
--background: #fff;
--background-alt: #f5f5f5;
font-family: 'Open Sans', Arial, sans-serif;
font-weight: 800;
background: var(--background);
color: var(--foreground);
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
width: 100vw;
height: 100vh;
margin: 0;
font-size: 1vw;
}
body {
margin: 0;
}
.video {
height: 100vh;
width: 100vw;
object-fit: cover;
position: fixed;
z-index: -1;
top: 0%;
left: 0;
}
@keyframes bling {
0% {
text-shadow: 0px 0px 0.0rem gold;
}
2024-02-20 16:17:50 +00:00
30% {
text-shadow: 0px 0px 0.0rem gold;
}
2023-02-25 19:38:19 +00:00
50% {
2023-02-25 20:10:26 +00:00
text-shadow: 0px 0px 0.5rem gold;
2023-02-25 19:38:19 +00:00
}
2024-02-20 16:17:50 +00:00
70% {
text-shadow: 0px 0px 0.0rem gold;
}
2023-02-25 19:38:19 +00:00
100% {
text-shadow: 0px 0px 0.0rem gold;
}
}
@keyframes scale {
2023-02-25 20:10:26 +00:00
0% {
2023-02-25 19:38:19 +00:00
transform: scale(1);
}
2023-02-25 20:10:26 +00:00
50% {
2023-02-25 19:38:19 +00:00
transform: scale(2);
}
2023-02-25 20:10:26 +00:00
100% {
transform: scale(1);
}
2023-02-25 19:38:19 +00:00
}
#ad {
position: fixed;
z-index: 1;
bottom: 0;
right: 0;
2024-02-20 16:17:50 +00:00
left: 0;
padding: 0 16px;
2023-02-25 19:38:19 +00:00
color: gold;
font-size: 5vh;
2023-02-25 20:10:26 +00:00
text-shadow: 0px 0px 0.5rem gold;
2023-02-25 19:38:19 +00:00
animation-name: bling;
animation-duration: 1s;
animation-timing-function: linear;
animation-iteration-count: infinite;
2024-02-20 16:17:50 +00:00
white-space: nowrap;
2023-02-25 19:38:19 +00:00
}
2023-02-25 20:10:26 +00:00
@keyframes rotate {
from {
2024-02-20 16:17:50 +00:00
transform: rotateY(0deg);
2023-02-25 20:10:26 +00:00
}
to {
2024-02-20 16:17:50 +00:00
transform: rotateY(360deg);
2023-02-25 20:10:26 +00:00
}
}
2024-02-20 16:17:50 +00:00
@keyframes depth {
0% { text-shadow: 0 0 #5b5015; }
25% { text-shadow: 4px 0 #5b5015, 8px 0 #5b5015, 12px 0 #5b5015, 16px 0 #5b5015, 20px 0 #5b5015; }
50% { text-shadow: 0 0 #5b5015; }
75% { text-shadow: -4px 0 #5b5015, -8px 0 #5b5015, -12px 0 #5b5015, -16px 0 #5b5015, -20px 0 #5b5015; }
100% { text-shadow: 0 0 #5b5015; }
}
2023-02-25 20:10:26 +00:00
.money {
position: fixed;
2024-02-20 16:17:50 +00:00
top: 5vh;
left: 5vw;
2023-02-25 20:10:26 +00:00
z-index: 1;
color: gold;
2024-02-20 16:17:50 +00:00
font-size: 20vw;
animation-name: rotate, depth;
2023-02-25 20:10:26 +00:00
animation-timing-function: linear;
animation-iteration-count: infinite;
2024-02-20 16:17:50 +00:00
animation-duration: 5s;
2023-02-25 20:10:26 +00:00
}