Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

118 řádky
1.5 KiB

  1. * {
  2. box-sizing: border-box;
  3. }
  4. html {
  5. font-size: 85%;
  6. scroll-behavior: smooth;
  7. @media (min-width: 576px) {
  8. font-size: 100%;
  9. }
  10. }
  11. body {
  12. font-family: 'Lato', sans-serif;
  13. font-size: size(16);
  14. line-height: size(24);
  15. color: $font;
  16. font-weight: 400;
  17. background: #fff;
  18. overflow-x: hidden;
  19. }
  20. table, td, th {
  21. font-family: 'Lato', sans-serif;
  22. font-size: size(16);
  23. line-height: size(24);
  24. color: $font;
  25. font-weight: 400;
  26. }
  27. a {
  28. text-decoration: none;
  29. &:hover {
  30. text-decoration: underline;
  31. }
  32. }
  33. strong {
  34. font-weight: 700;
  35. }
  36. ul {
  37. margin: 0;
  38. padding: 0;
  39. li {
  40. margin: 0;
  41. padding: 0;
  42. list-style-type: none;
  43. }
  44. }
  45. figure {
  46. margin: 0;
  47. }
  48. img {
  49. display: block;
  50. width: 100%;
  51. height: auto;
  52. }
  53. .overflow-visible {
  54. overflow: visible;
  55. }
  56. .float_above {
  57. margin-bottom: 0.75em;
  58. }
  59. .float_left {
  60. float: left;
  61. }
  62. .float_right {
  63. float: right;
  64. }
  65. .invisible, .sr-only {
  66. display: none !important;
  67. }
  68. #wrapper {
  69. margin: auto;
  70. max-width: 1640px;
  71. }
  72. #container {
  73. padding: 5rem 0 0 0;
  74. .nopadding & {
  75. padding-top: 0;
  76. }
  77. }
  78. input:-moz-placeholder,
  79. textarea:-moz-placeholder {
  80. color: $font;
  81. opacity: 1;
  82. }
  83. input::-moz-placeholder,
  84. textarea::-moz-placeholder {
  85. color: $font;
  86. opacity: 1;
  87. }
  88. input::-webkit-input-placeholder,
  89. textarea::-webkit-input-placeholder {
  90. color: $font;
  91. opacity: 1;
  92. }
  93. input:-ms-input-placeholder,
  94. textarea:-ms-input-placeholder {
  95. color: $font;
  96. opacity: 1;
  97. }