2025-12-01 13:12:00 +01:00
|
|
|
/*
|
|
|
|
|
* This is a manifest file that'll be compiled into application.css.
|
|
|
|
|
*
|
|
|
|
|
* With Propshaft, assets are served efficiently without preprocessing steps. You can still include
|
|
|
|
|
* application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
|
|
|
|
|
* cascading order, meaning styles declared later in the document or manifest will override earlier ones,
|
|
|
|
|
* depending on specificity.
|
|
|
|
|
*
|
|
|
|
|
* Consider organizing styles into separate files for maintainability.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
font-family: "Sour Gummy", sans-serif;
|
|
|
|
|
font-weight: 350;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-08 13:36:58 +01:00
|
|
|
main {
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-09 10:04:38 +01:00
|
|
|
#navbar-top {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2026-01-08 13:36:58 +01:00
|
|
|
.tracker {
|
|
|
|
|
align-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logs {
|
|
|
|
|
height: 60vh;
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-07 16:24:35 +01:00
|
|
|
.current-day {
|
|
|
|
|
background-color: white;
|
|
|
|
|
position: sticky;
|
2026-02-09 10:04:38 +01:00
|
|
|
top: 64px;
|
2026-01-08 13:36:58 +01:00
|
|
|
align-content: center;
|
2026-01-07 16:24:35 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-15 19:26:52 +01:00
|
|
|
.bar {
|
2025-12-01 13:12:00 +01:00
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
}
|
2025-12-01 15:01:40 +01:00
|
|
|
|
2025-12-02 17:38:47 +01:00
|
|
|
.day {
|
2025-12-01 13:12:00 +01:00
|
|
|
border: 1px;
|
|
|
|
|
margin: 4px;
|
2026-01-08 17:46:51 +01:00
|
|
|
width: 15px;
|
|
|
|
|
height: 15px;
|
2025-12-01 13:12:00 +01:00
|
|
|
}
|
2025-12-01 15:01:40 +01:00
|
|
|
|
2026-02-06 16:07:51 +01:00
|
|
|
.selected-day {
|
|
|
|
|
border: 2px double white;
|
|
|
|
|
margin: 4px;
|
|
|
|
|
width: 15px;
|
|
|
|
|
height: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-01 13:12:00 +01:00
|
|
|
.info {
|
|
|
|
|
margin: 30px;
|
|
|
|
|
}
|