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.
|
- * {
- box-sizing: border-box;
- }
-
- html {
- font-size: 100%;
- scroll-behavior: smooth;
- }
-
- body {
- @include futura-light;
- font-size: size(17);
- line-height: size(23);
- font-weight: 400;
- color: $main-color;
- //background: #002887;
- background: $bg-color;
- overflow-x: hidden;
- }
-
- main {
- padding: 8rem 0 15rem 0;
- .inside {
- padding-left: 15px;
- padding-right: 15px;
- @media (min-width: 992px) {
- padding-left: 0;
- padding-right: 0;
- }
- }
- }
-
- figure {
- margin: 0;
- }
-
- img {
- display: block;
- width: 100%;
- }
-
- video {
- display: block;
- }
-
- blockquote:before {
- content: "»";
- }
-
- blockquote:after {
- content: "«";
- }
-
- #container {
- background-color: $bg-color;
- padding: 0;
- }
-
- .overflow-visible {
- overflow: visible;
- }
-
- .float_above {
- margin-bottom: 0.75em;
- }
-
- .float_left {
- float: left;
- }
-
- .float_right {
- float: right;
- }
-
- .invisible, .sr-only {
- display: none;
- }
-
- .inside-container {
- max-width: 1050px;
- margin: 0 auto;
- }
|