blob: 7e3e80637b20991574b7d897ca16322fa626d646 [file] [log] [blame]
Adrià Vilanova Martínez5af86512023-12-02 20:44:16 +01001/*
2 * hores
3 * Copyright (c) 2023 Adrià Vilanova Martínez
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as
7 * published by the Free Software Foundation, either version 3 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public
16 * License along with this program.
17 * If not, see http://www.gnu.org/licenses/.
18 */
Copybara botbe50d492023-11-30 00:16:42 +010019.calendar {
20 margin: 10px auto 40px auto;
21 border-collapse: collapse;
22}
23
24.calendar td {
25 padding: 8px;
26 min-width: 75px;
27}
28
29.calendar .day {
30 border: solid 1px black;
31}
32
33.calendar .day .date {
34 font-weight: bold;
35}
36
37select {
38 border-radius: 3px;
39}
40
41select[data-value="0"] {
42 background: #FF1744;
43 color: white;
44}
45
46select[data-value="1"] {
47 background: #00E5FF;
48 color: black;
49}
50
51select[data-value="2"] {
52 background: #00E676;
53 color: black;
54}
55
56select option {
57 background: white;
58 color: black;
59}
60
61.month {
62 font-weight: light;
63 font-size: 18px;
64 text-align: center;
65}