2024-01-24 11:46:09 +00:00
|
|
|
:root {
|
|
|
|
|
--c-primary: darkorange; /* Replace #yourColor with your desired color */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a,
|
|
|
|
|
input[type="text"]:focus,
|
|
|
|
|
input[type="email"]:focus,
|
|
|
|
|
input[type="password"]:focus,
|
|
|
|
|
select:focus,
|
|
|
|
|
textarea:focus {
|
|
|
|
|
color: var(--c-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button,
|
|
|
|
|
input[type="submit"] {
|
|
|
|
|
background-color: var(--c-primary);
|
|
|
|
|
border-color: var(--c-primary);
|
2024-01-24 16:43:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
|
list-style: circle inside;
|
|
|
|
|
display: flex;
|
|
|
|
|
list-style: none;
|
|
|
|
|
gap: 1em;
|
|
|
|
|
justify-content: end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
header {
|
|
|
|
|
padding-top: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section {
|
|
|
|
|
margin-top: 4rem;
|
2024-01-24 11:46:09 +00:00
|
|
|
}
|