You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
1.6KB

  1. #content-page {
  2. margin-top: $headerheight;
  3. }
  4. img {
  5. max-width: 100%;
  6. max-height: 100%;
  7. }
  8. li, p, a, select, option, .description {
  9. font-family: FranklinGothic;
  10. }
  11. p, .description {
  12. font-size: 20px;
  13. }
  14. h1, h2, h3, h4, h5, h6 {
  15. font-family: Georgia;
  16. }
  17. .bold {
  18. font-weight: bold;
  19. }
  20. a:hover {
  21. text-decoration: none;
  22. }
  23. input:focus,
  24. select:focus,
  25. textarea:focus,
  26. button:focus {
  27. outline: none;
  28. }
  29. .hidden {
  30. display: none;
  31. }
  32. .success-post {
  33. color: $green;
  34. border: 2px solid $green;
  35. text-align: center;
  36. padding: 15px;
  37. margin-top: 50px;
  38. margin-bottom: 50px;
  39. }
  40. .button-green {
  41. border: 2px solid $green;
  42. background-color: #FFF;
  43. color: $green;
  44. text-transform: uppercase;
  45. font-family: dinbold;
  46. font-size: 20px;
  47. padding: 15px;
  48. display: inline-block;
  49. &:hover {
  50. border-color: $yellow;
  51. }
  52. }
  53. .button-yellow {
  54. color: $yellow;
  55. background-color: $green;
  56. padding: 15px;
  57. font-size: 22px;
  58. margin-top: 30px;
  59. display: inline-block;
  60. border: none;
  61. font-family: dinbold;
  62. }
  63. .alert-success {
  64. position: absolute;
  65. top: $headerheight;
  66. width: 100%;
  67. text-align: center;
  68. color: $green;
  69. font-family: dinbold;
  70. }
  71. .link-slide {
  72. position: relative;
  73. overflow: hidden;
  74. text-decoration: none;
  75. &::after {
  76. content: '';
  77. position: absolute;
  78. bottom: 0;
  79. left: 0;
  80. width: 100%;
  81. height: 2px;
  82. background-color: $orange;
  83. transition: opacity 300ms, transform 300ms;
  84. opacity: 1;
  85. transform: translate3d(-100%, 0, 0);
  86. }
  87. &:hover::after,
  88. &:focus::after {
  89. opacity: 1;
  90. transform: translate3d(0, 0, 0);
  91. }
  92. }