great stuff

This commit is contained in:
nora 2025-02-13 22:32:53 +01:00
parent e6201286ac
commit d122aab60a
6 changed files with 183 additions and 20 deletions

View file

@ -6,17 +6,27 @@ html {
--color-primary: rebeccapurple;
--color-white: white;
--color-error: red;
height: 100%;
}
body {
height: 100%;
}
.main {
width: 100vw;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer {
justify-self: flex-end;
}
.content {
max-width: 50rem;
}
@ -28,10 +38,24 @@ html {
align-items: center;
}
.start-button {
width: 300px;
height: 100px;
font-size: 3rem;
.root-link {
color: initial;
text-decoration: none;
}
.action-button {
width: 400px;
font-size: 1.5rem;
font-weight: bold;
padding: 20px;
background-color: var(--color-primary);
color: var(--color-white);
border: none;
text-decoration: none;
&:hover {
background-color: color-mix(in oklab, var(--color-primary), white 15%);
}
}
.lessons-list {
@ -57,8 +81,8 @@ html {
}
form[data-challenge] > .error {
margin-top: 10px;
color: var(--color-error);
margin-top: 10px;
color: var(--color-error);
}
.quiz-section {