desktop.less 1.0 KB

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