teams.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. Copyright (C) 2021 Echedey López Romero <elr@disroot.org>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. nav li:nth-child(4) > a {
  15. text-decoration: underline;
  16. }
  17. main > div {
  18. margin: auto;
  19. padding: 1rem;
  20. width: 50rem;
  21. background-color: rgb(217, 62, 65);
  22. }
  23. main > div > div {
  24. border-width: 0.15rem;
  25. border-style: solid;
  26. border-color: rgb(255, 226, 66);
  27. }
  28. main table {
  29. width: 100%;
  30. text-align: center;
  31. border-collapse: collapse;
  32. }
  33. main thead {
  34. background-color: rgb(255, 140, 0, 0.25);
  35. }
  36. main tfoot {
  37. background-color: rgb(255, 140, 0, 0.25);
  38. }
  39. main thead tr th,
  40. main tbody tr th,
  41. main tbody tr td {
  42. border-radius: 0;
  43. border-bottom-width: 0.15rem;
  44. border-bottom-style: solid;
  45. border-bottom-color: rgb(255, 226, 66);
  46. }
  47. main tr th:not(:last-child),
  48. main tr td:not(:last-child) {
  49. border-radius: 0;
  50. border-right-width: 0.15rem;
  51. border-right-style: solid;
  52. border-right-color: rgb(255, 226, 66);
  53. }
  54. main th,
  55. main td {
  56. padding: 0.25rem;
  57. }