blob: 7e3e80637b20991574b7d897ca16322fa626d646 [file] [log] [blame]
/*
* hores
* Copyright (c) 2023 Adrià Vilanova Martínez
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program.
* If not, see http://www.gnu.org/licenses/.
*/
.calendar {
margin: 10px auto 40px auto;
border-collapse: collapse;
}
.calendar td {
padding: 8px;
min-width: 75px;
}
.calendar .day {
border: solid 1px black;
}
.calendar .day .date {
font-weight: bold;
}
select {
border-radius: 3px;
}
select[data-value="0"] {
background: #FF1744;
color: white;
}
select[data-value="1"] {
background: #00E5FF;
color: black;
}
select[data-value="2"] {
background: #00E676;
color: black;
}
select option {
background: white;
color: black;
}
.month {
font-weight: light;
font-size: 18px;
text-align: center;
}