kylamoe/docs/style.css

169 lines
2.2 KiB
CSS
Raw Normal View History

2024-07-26 14:30:28 -04:00
body {
2024-07-26 23:32:18 +02:00
background: #eaeaea;
margin: 0;
height: 100vh;
width: 100vw;
display: flex;
font-family: monospace;
justify-content: center;
align-items: center;
2024-07-26 17:46:01 -04:00
overflow: hidden;
2024-07-26 17:46:54 -04:00
max-height: 100vh;
2024-07-26 23:32:18 +02:00
border-radius: 15px;
2024-07-26 14:30:28 -04:00
}
2024-07-26 23:32:18 +02:00
2024-07-26 22:34:57 -04:00
#warning {
display: flex;
background: black;
color: white;
2024-07-27 11:09:14 +02:00
position: absolute;
2024-07-26 22:34:57 -04:00
z-index: 1000;
height: 100vh;
width: 100vw;
justify-content: center;
align-items: center;
text-align: center;
}
#prompt a {
color: white;
}
#prompt {
padding: 2vw;
background: #303030
}
.fadeout {
2024-07-27 11:09:14 +02:00
animation-name: fadeout;
animation-duration: 1000ms;
animation-fill-mode: forwards;
2024-07-26 22:34:57 -04:00
}
@keyframes fadeout {
from {
opacity: 1;
}
2024-07-27 11:09:14 +02:00
2024-07-26 22:34:57 -04:00
to {
opacity: 0;
}
}
2024-07-27 00:38:58 +00:00
.plimalgranda {
font-size: 75%;
}
2024-07-26 14:30:28 -04:00
#stickers {
2024-07-26 23:32:18 +02:00
border-top: 1px solid black;
padding: 10px;
height: 40px;
flex-grow: 100;
2024-07-26 14:30:28 -04:00
}
#innerSticker {
2024-07-26 23:32:18 +02:00
display: flex;
align-items: center;
justify-content: space-around;
2024-07-26 14:30:28 -04:00
}
#footer {
2024-07-26 23:32:18 +02:00
position: absolute;
bottom: 0;
right: 0;
display: flex;
align-content: bottom;
align-items: flex-end;
width: 100vw;
2024-07-26 14:30:28 -04:00
}
2024-07-26 23:32:18 +02:00
2024-07-26 14:30:28 -04:00
#webring {
2024-07-26 23:32:18 +02:00
background: white;
padding: 15px;
width: 155px;
border-left: black solid 1px;
border-top: black solid 1px
2024-07-26 14:30:28 -04:00
}
#back {
2024-07-26 23:32:18 +02:00
position: absolute;
left: 0;
top: 0;
background: black;
color: white;
padding: 0px 5px
2024-07-26 14:30:28 -04:00
}
#content {
2024-07-26 23:32:18 +02:00
box-shadow: -25px 15px 10px lightgray;
border-radius: 7px;
background: white;
border: 1px solid gray;
display: flex;
justify-content: space-between;
overflow: hidden auto;
2024-07-26 14:30:28 -04:00
}
2024-07-26 23:32:18 +02:00
2024-07-26 14:30:28 -04:00
#content #left {
2024-07-26 23:32:18 +02:00
margin-left: 30px;
margin-bottom: ;
margin-block: auto;
padding-block: 30px;
2024-07-26 14:30:28 -04:00
}
2024-07-26 23:32:18 +02:00
2024-07-26 14:30:28 -04:00
h1 {
2024-07-26 23:32:18 +02:00
margin-bottom: 0;
2024-07-26 14:30:28 -04:00
}
2024-07-26 23:32:18 +02:00
2024-07-26 14:30:28 -04:00
a {
2024-07-26 23:32:18 +02:00
padding-right: 15px;
color: black;
2024-07-26 14:30:28 -04:00
}
2024-07-26 23:32:18 +02:00
2024-07-26 14:30:28 -04:00
.lighter {
2024-07-26 23:32:18 +02:00
color: gray;
2024-07-26 14:30:28 -04:00
}
2024-07-26 23:32:18 +02:00
2024-07-26 14:30:28 -04:00
#right {
2024-07-26 23:32:18 +02:00
height: 100%;
position: sticky;
top: 0;
right: -100px;
2024-07-26 14:30:28 -04:00
}
2024-07-26 23:32:18 +02:00
2024-07-26 14:30:28 -04:00
img {
2024-07-26 23:32:18 +02:00
border-radius: 7px;
vertical-align: middle;
2024-07-26 14:30:28 -04:00
}
#innerSticker a img {
2024-07-26 23:32:18 +02:00
border-radius: 0;
width: 88px;
height: 33px;
2024-07-26 14:30:28 -04:00
}
2024-07-26 23:32:18 +02:00
2024-07-26 14:30:28 -04:00
a img {
2024-07-26 23:32:18 +02:00
padding-right: 5px;
height: 25px;
width: 25px;
overflow: hidden;
}
.falling {
position: absolute;
left: 50%;
top: 0;
animation: fall 3s linear forwards infinite;
}
@keyframes fall {
0% {
2024-07-27 11:09:14 +02:00
transform: translateY(-50vh) rotate(0);
2024-07-26 23:32:18 +02:00
}
100% {
2024-07-27 11:09:14 +02:00
transform: translateY(150vh) rotate(180deg);
2024-07-26 23:32:18 +02:00
}
2024-07-27 11:09:14 +02:00
}