12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- html{
- width: 100%;
- body{
- font-family: "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
- background-color: #f5f5f5;
- overflow-y: scroll;
- @import "dark-theme";
- .section{
- padding-left: 20px;
- padding-right: 20px;
- .section-wrapper{
- box-sizing: border-box;
- margin-left: auto;
- margin-right: auto;
- max-width: 1306px;
- }
- }
- .breadcrumbs{
- display: flex;
- .breadcrumb{
- position: relative;
- display: inline-block;
- background: transparent;
- font: 12px/14px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
- color: #5a748b;
- letter-spacing: .15em;
- text-transform: uppercase;
- padding: 0;
- margin-right: 30px;
- &:not(:last-child):before {
- display: block;
- position: absolute;
- content: "•";
- right: -16px;
- color: #a8a8a8;
- }
- }
- }
- }
- }
- @import "header";
- @import "body";
- @import "footer";
|