nyazoom/dist/css/link.css

33 lines
517 B
CSS
Raw Normal View History

2023-04-11 10:29:21 +00:00
body {
2023-04-11 11:38:55 +00:00
background-color: #fcb0b3;
color: #25283d;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
margin: 0;
gap: 1em;
2023-04-11 10:29:21 +00:00
}
.link-wrapper {
2023-04-11 11:38:55 +00:00
background-color: #49dcb1;
padding: 1.5em;
border-radius: 1em;
border: 1px solid #25283d;
2023-07-31 16:16:18 +00:00
list-style: none;
2023-04-11 10:29:21 +00:00
}
.return-button {
2023-04-11 11:38:55 +00:00
all: unset;
background-color: #49dcb1;
padding: 1em;
border-radius: 1em;
cursor: pointer;
2023-04-11 10:29:21 +00:00
}
.return-button:hover {
2023-04-11 11:38:55 +00:00
filter: brightness(1.1);
2023-04-11 10:29:21 +00:00
}