Adrià Vilanova Martínez | 5af8651 | 2023-12-02 20:44:16 +0100 | [diff] [blame] | 1 | /* |
| 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 bot | be50d49 | 2023-11-30 00:16:42 +0100 | [diff] [blame] | 19 | .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 | |
| 37 | select { |
| 38 | border-radius: 3px; |
| 39 | } |
| 40 | |
| 41 | select[data-value="0"] { |
| 42 | background: #FF1744; |
| 43 | color: white; |
| 44 | } |
| 45 | |
| 46 | select[data-value="1"] { |
| 47 | background: #00E5FF; |
| 48 | color: black; |
| 49 | } |
| 50 | |
| 51 | select[data-value="2"] { |
| 52 | background: #00E676; |
| 53 | color: black; |
| 54 | } |
| 55 | |
| 56 | select option { |
| 57 | background: white; |
| 58 | color: black; |
| 59 | } |
| 60 | |
| 61 | .month { |
| 62 | font-weight: light; |
| 63 | font-size: 18px; |
| 64 | text-align: center; |
| 65 | } |