mirror of
https://github.com/Noratrieb/womangling.git
synced 2026-01-14 17:05:04 +01:00
great stuff
This commit is contained in:
parent
e6201286ac
commit
d122aab60a
6 changed files with 183 additions and 20 deletions
40
index.css
40
index.css
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue