|
- @charset "UTF-8";
-
- html, body {
- margin: 0;
- padding: 0;
- background-color: $color-white;
-
- * {
- box-sizing: border-box;
- }
- }
-
- body {
- overflow-y: scroll;
-
- &.nav-open {
- position: fixed;
- width: 100%;
- }
-
- &:not(.ready) * {
- transition: none !important;
- }
- }
-
- img {
- max-width: 100%;
- display: block;
- }
-
- a {
- color: $color-link;
- color: var(--theme-color-link, $color-link);
- }
-
- .visually-hidden, .visuallyHidden, .visuallyhidden {
- position: absolute;
- opacity: 0;
- pointer-events: none;
- max-width: 0;
- max-height: 0;
- }
-
- .js-focus-visible *:focus:not(.focus-visible) {
- outline: none;
- }
-
- .sitemap {
- .ebene1{
- font-size: 2em; // 32px
- line-height: 36px;
- margin: 15px 0 0 5px;
- a {
- color: black;
- }
- }
- .ebene2{
- font-size: 1.25em; // 20px
- line-height: 26px;
- margin: 10px 0 0 15px;
- a {
- color: black;
- text-decoration: none;
- }
- }
- .ebene3{
- margin: 5px 0 0 25px;
- a{
- text-decoration: none;
- }
- }
- }
-
- @media screen {
- .printonly {
- display: none;
- }
- }
|