_general.scss 954 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. body {
  2. background-color: #e9e9e9;
  3. @include transition(all .5s);
  4. font-family: 'Roboto', Arial, Tahoma, sans-serif;
  5. }
  6. h1,
  7. h2,
  8. h3,
  9. h4,
  10. h5,
  11. h6 {
  12. font-weight: bold;
  13. }
  14. button,
  15. input,
  16. select,
  17. a {
  18. outline: none !important;
  19. }
  20. .no-animate {
  21. -o-transition-property: none !important;
  22. -moz-transition-property: none !important;
  23. -ms-transition-property: none !important;
  24. -webkit-transition-property: none !important;
  25. transition-property: none !important;
  26. -o-transform: none !important;
  27. -moz-transform: none !important;
  28. -ms-transform: none !important;
  29. -webkit-transform: none !important;
  30. transform: none !important;
  31. -webkit-animation: none !important;
  32. -moz-animation: none !important;
  33. -o-animation: none !important;
  34. -ms-animation: none !important;
  35. animation: none !important;
  36. }
  37. section {
  38. &.content {
  39. margin: 100px 15px 0 315px;
  40. @include transition(.5s);
  41. }
  42. }