report.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. This file is part of Resumer
  3. Copyright (C) 2016 Sylvia van Os
  4. Resumer is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as
  6. published by the Free Software Foundation, either version 3 of the
  7. License, or (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. .left {
  16. position: relative;
  17. float: left;
  18. width: 30%;
  19. }
  20. .right {
  21. position: relative;
  22. float: right;
  23. width: 70%;
  24. }
  25. .container:not(:last-child) {
  26. padding-bottom: 1em;
  27. border-bottom: 1px solid #ccc;
  28. }
  29. .container:after {
  30. content:"";
  31. display:table;
  32. clear:both;
  33. }
  34. h1 {
  35. text-align: center;
  36. }
  37. h2 {
  38. font-style: italic;
  39. }
  40. ul {
  41. list-style: none;
  42. padding: 0px;
  43. }
  44. h3.repotitle {
  45. margin-bottom: 0px;
  46. }
  47. div.date {
  48. float: right;
  49. }
  50. ul.twocolumn li,
  51. ul.threecolumn li {
  52. float: left;
  53. }
  54. ul.twocolumn li {
  55. width: 50%;
  56. }
  57. ul.threecolumn li {
  58. width: 33.3%;
  59. }
  60. @media (max-width: 640px) {
  61. .left, .right,
  62. ul.twocolumn li,
  63. ul.threecolumn li {
  64. width: 100%;
  65. }
  66. ul.threecolumn li {
  67. text-align: center;
  68. }
  69. }