2024-01-24 11:46:09 +00:00
|
|
|
:root {
|
2024-01-24 22:13:00 +00:00
|
|
|
--c-primary: darkorange; /* Replace #yourColor with your desired color */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background-color: #f2f0ef;
|
2024-01-24 11:46:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a,
|
2024-01-24 22:13:00 +00:00
|
|
|
input[type='text']:focus,
|
|
|
|
|
input[type='email']:focus,
|
|
|
|
|
input[type='password']:focus,
|
2024-01-24 11:46:09 +00:00
|
|
|
select:focus,
|
|
|
|
|
textarea:focus {
|
2024-01-24 22:13:00 +00:00
|
|
|
color: var(--c-primary);
|
2024-01-24 11:46:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button,
|
2024-01-24 22:13:00 +00:00
|
|
|
input[type='submit'] {
|
|
|
|
|
background-color: var(--color);
|
|
|
|
|
border-color: var(--color);
|
2024-01-24 16:43:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul {
|
2024-01-24 22:13:00 +00:00
|
|
|
list-style: circle inside;
|
|
|
|
|
display: flex;
|
|
|
|
|
list-style: none;
|
|
|
|
|
gap: 1em;
|
|
|
|
|
justify-content: end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul li {
|
|
|
|
|
font-size: 2rem;
|
2024-01-24 16:43:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
header {
|
2024-01-24 22:13:00 +00:00
|
|
|
padding-top: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* aside {
|
|
|
|
|
position: relative;
|
|
|
|
|
padding-top: 1rem;
|
|
|
|
|
display: block;
|
|
|
|
|
} */
|
|
|
|
|
|
|
|
|
|
/* aside::after {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 50px;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
outline: 1px solid #ccc;
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
} */
|
|
|
|
|
|
|
|
|
|
aside button {
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
border-radius: 999px;
|
2024-01-24 16:43:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section {
|
2024-01-24 22:13:00 +00:00
|
|
|
margin-top: 4rem;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-24 22:54:13 +00:00
|
|
|
/* https://coolors.co/palette/5f0f40-9a031e-fb8b24-e36414-0f4c5c */
|
|
|
|
|
|
2024-01-24 22:13:00 +00:00
|
|
|
[class*='--food'] {
|
|
|
|
|
--color: #136f63;
|
|
|
|
|
}
|
|
|
|
|
[class*='--poop'] {
|
|
|
|
|
--color: #78290f;
|
|
|
|
|
}
|
|
|
|
|
[class*='--asleep'] {
|
|
|
|
|
--color: #032b43;
|
|
|
|
|
}
|
|
|
|
|
[class*='--awake'] {
|
|
|
|
|
--color: #ffba08;
|
|
|
|
|
}
|
|
|
|
|
[class*='--diaper'] {
|
|
|
|
|
--color: #3f88c5;
|
|
|
|
|
}
|
|
|
|
|
/* d00000 ff7d00 */
|
|
|
|
|
|
|
|
|
|
.badge {
|
|
|
|
|
background-color: var(--color);
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.35em .75em .25em .75em;
|
|
|
|
|
color: rgba(255, 255, 255, 0.75);
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
min-width: 10ch;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.counters {
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: max-content;
|
|
|
|
|
outline: 1px solid #ccc;
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
padding: 2rem;
|
|
|
|
|
border-radius: 2rem 0 0 2rem;
|
|
|
|
|
}
|