style.less 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @import "fonts";
  2. @import "layouts/desktop/desktop";
  3. @import "components/main_page";
  4. @import "components/post";
  5. @import "components/archive";
  6. @import "grid";
  7. body{
  8. -webkit-font-smoothing: antialiased;
  9. -webkit-text-size-adjust: 100%;
  10. font: 12px/22px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  11. ul{
  12. list-style: none;
  13. padding: 0;
  14. }
  15. .button-gray{
  16. padding: 0 16px 0 20px;
  17. height: 32px;
  18. background-color: #f5f5f5;
  19. border-radius: 36px;
  20. }
  21. a{
  22. text-decoration: none;
  23. color: #3E3E42;
  24. outline: none;
  25. transition: .3s cubic-bezier(.645,.045,.355,1);
  26. &:hover{
  27. color: #3b5573;
  28. text-decoration: none;
  29. }
  30. }
  31. .button{
  32. position: relative;
  33. display: inline-flex;
  34. justify-content: center;
  35. align-items: center;
  36. margin: 0;
  37. border: none;
  38. cursor: pointer;
  39. outline: 0;
  40. z-index: 10;
  41. transition: .3s cubic-bezier(.645, .045, .355, 1);
  42. -webkit-appearance: none;
  43. border-radius: 50px;
  44. background: #f5f5f5;
  45. padding: 3px 12px;
  46. color: #ff7f00;
  47. &_gray{
  48. padding: 0 16px 0 20px;
  49. height: 32px;
  50. background-color: #f5f5f5;
  51. border-radius: 36px;
  52. }
  53. }
  54. }
  55. div.picture-cont-16x9{
  56. position: relative;
  57. width: 100%;
  58. padding-bottom: 56.25%;
  59. picture{
  60. position: absolute;
  61. top:0;
  62. left: 0;
  63. width: 100%;
  64. height: 100%;
  65. }
  66. }