Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

62 lines
686B

  1. html {
  2. font-size: 62.5%;
  3. @include large-only {
  4. font-size: 60%;
  5. }
  6. @include desktop-only {
  7. font-size: 55%;
  8. }
  9. @include tablet-only {
  10. font-size: 50%;
  11. }
  12. @include mobile-only {
  13. font-size: 45%;
  14. }
  15. }
  16. img {
  17. max-width: 100%;
  18. max-height: 100%;
  19. }
  20. h1, h2, h3, h4, h5, h6 {
  21. }
  22. li, p, a, select, option {
  23. }
  24. p {
  25. font-size: 2.0rem;
  26. }
  27. .bold {
  28. font-weight: bold;
  29. }
  30. a:hover {
  31. text-decoration: none;
  32. }
  33. input:focus,
  34. select:focus,
  35. textarea:focus,
  36. button:focus {
  37. outline: none;
  38. }
  39. .hidden {
  40. display: none;
  41. }
  42. .success-post {
  43. color: $green;
  44. border: 2px solid $green;
  45. text-align: center;
  46. padding: 15px;
  47. margin-top: 50px;
  48. margin-bottom: 50px;
  49. }