Scenario generator for vore roleplay and story ideas. https://scenario-generator.deliciousreya.net/responses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

66 lines
715 B

body {
background-color: deepskyblue;
font-family: sans-serif;
padding: 0;
margin: 0;
}
.window {
background-color: #f8f7f0;
padding: 1rem;
border: 0.1rem solid black;
border-radius: 0.5rem;
box-sizing: border-box;
}
.page {
}
.page * {
user-select: none;
}
.readable {
width: 35rem;
}
ul {
padding: 0;
}
li {
list-style: none;
}
.buttons {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: stretch;
& > * {
flex: 1 0 auto;
margin: 0.2rem 0 0 0.3rem
}
}
@keyframes popup {
from {
transform: scale(0);
opacity: 0;
}
10% {
transform: none;
opacity: 100%;
}
75% {
transform: none;
opacity: 100%;
}
to {
transform: scale(0);
opacity: 0;
}
}