This commit is contained in:
2023-11-29 15:22:06 +01:00
parent 6d4d6077af
commit a09a2d54eb
6 changed files with 119 additions and 202 deletions
+14 -5
View File
@@ -78,9 +78,17 @@ html {
background-color: #1e2341;
color: white;
@media screen and (max-width: 600px) {
@media screen and (max-width: 700px) {
font-size: calc(0.7vw + 0.7rem);
}
font-size: 16px;
}
button,
select,
input {
font-size: inherit;
}
button {
@@ -91,10 +99,10 @@ button {
background-color: #0066ff;
color: white;
padding: 0.5rem 0.75rem;
margin: 0.5rem 0;
padding: 0.5em 0.5em;
font-weight: bold;
font-size: 0.9em;
cursor: pointer;
transition: all 75ms;
@@ -103,8 +111,9 @@ button {
outline: 1px solid gold;
}
&:hover {
color: gold;
&:hover,
&:focus-visible {
background-color: lighten($color: #0066ff, $amount: 10%);
}
}