desktop.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. html{
  2. width: 100%;
  3. body{
  4. font-family: "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  5. background-color: #f5f5f5;
  6. overflow-y: scroll;
  7. @import "dark-theme";
  8. .section{
  9. padding-left: 20px;
  10. padding-right: 20px;
  11. .section-wrapper{
  12. box-sizing: border-box;
  13. margin-left: auto;
  14. margin-right: auto;
  15. max-width: 1306px;
  16. }
  17. }
  18. .breadcrumbs{
  19. display: flex;
  20. .breadcrumb{
  21. position: relative;
  22. display: inline-block;
  23. background: transparent;
  24. font: 12px/14px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  25. color: #5a748b;
  26. letter-spacing: .15em;
  27. text-transform: uppercase;
  28. padding: 0;
  29. margin-right: 30px;
  30. &:not(:last-child):before {
  31. display: block;
  32. position: absolute;
  33. content: "•";
  34. right: -16px;
  35. color: #a8a8a8;
  36. }
  37. }
  38. }
  39. }
  40. }
  41. @import "header";
  42. @import "body";
  43. @import "footer";