Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

79 wiersze
1.0 KiB

  1. @charset "UTF-8";
  2. html, body {
  3. margin: 0;
  4. padding: 0;
  5. background-color: $color-white;
  6. * {
  7. box-sizing: border-box;
  8. }
  9. }
  10. body {
  11. overflow-y: scroll;
  12. &.nav-open {
  13. position: fixed;
  14. width: 100%;
  15. }
  16. &:not(.ready) * {
  17. transition: none !important;
  18. }
  19. }
  20. img {
  21. max-width: 100%;
  22. display: block;
  23. }
  24. a {
  25. color: $color-link;
  26. color: var(--theme-color-link, $color-link);
  27. }
  28. .visually-hidden, .visuallyHidden, .visuallyhidden {
  29. position: absolute;
  30. opacity: 0;
  31. pointer-events: none;
  32. max-width: 0;
  33. max-height: 0;
  34. }
  35. .js-focus-visible *:focus:not(.focus-visible) {
  36. outline: none;
  37. }
  38. .sitemap {
  39. .ebene1{
  40. font-size: 2em; // 32px
  41. line-height: 36px;
  42. margin: 15px 0 0 5px;
  43. a {
  44. color: black;
  45. }
  46. }
  47. .ebene2{
  48. font-size: 1.25em; // 20px
  49. line-height: 26px;
  50. margin: 10px 0 0 15px;
  51. a {
  52. color: black;
  53. text-decoration: none;
  54. }
  55. }
  56. .ebene3{
  57. margin: 5px 0 0 25px;
  58. a{
  59. text-decoration: none;
  60. }
  61. }
  62. }
  63. @media screen {
  64. .printonly {
  65. display: none;
  66. }
  67. }