main.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. @import 'theme.scss';
  2. .flex {
  3. display:flex;
  4. flex-flow:wrap;
  5. justify-content:space-between;
  6. a {
  7. padding-bottom:2em;
  8. }
  9. }
  10. a {
  11. color:$link-color;
  12. text-decoration:none;
  13. font-weight:bold;
  14. }
  15. a:hover {
  16. color:$link-color-hover;
  17. font-weight:bold;
  18. text-decoration:underline;
  19. }
  20. body {
  21. margin:0;
  22. background-color: $background-color;
  23. color: $text-color;
  24. }
  25. h1,h2,h3,h4,h5,h6 {
  26. text-align:center;
  27. }
  28. h1 {
  29. padding:2em;
  30. margin:0;
  31. background: $h1-background-color;
  32. color: $h1-color;
  33. }
  34. h2 {
  35. color: $h2-color;
  36. }
  37. h3 {
  38. color: $h3-color;
  39. }
  40. h4 {
  41. color:$h4-color;
  42. }
  43. .blog {
  44. text-align:center;
  45. padding:2em 0;
  46. h3 {
  47. margin:0;
  48. }
  49. time {
  50. display:block;
  51. padding-bottom:2em;
  52. }
  53. }
  54. %shared-font-things {
  55. font-size: 15px;
  56. font-family: Verdana, Geneva, sans-serif;
  57. line-height: 30px;
  58. }
  59. p {
  60. @extend %shared-font-things;
  61. margin:2em 0;
  62. }
  63. %code-font-shared {
  64. font-size:16px;
  65. color:$code-text-color;
  66. }
  67. code {
  68. @extend %code-font-shared;
  69. }
  70. pre {
  71. border:solid 2px $code-border-color;
  72. border-radius:2em;
  73. // when I got syntax highlighting working,
  74. // delete this next line please.
  75. background-color:$grey;
  76. padding:2em;
  77. code {
  78. @extend %code-font-shared;
  79. color:black;
  80. }
  81. }
  82. img {
  83. display:block;
  84. margin:auto;
  85. }
  86. code {
  87. @extend %code-font-shared;
  88. }
  89. ul {
  90. li {
  91. @extend %shared-font-things;
  92. margin:1em;
  93. }
  94. }
  95. .basic-section-padding {
  96. max-width:70%;
  97. padding:2em 0 2em 15%;
  98. }
  99. .section-background {
  100. background-color:$darker-green;
  101. a:hover {
  102. color:$link-color-hover-navbar;
  103. text-decoration:underline;
  104. }
  105. }
  106. .text-white {
  107. color:white;
  108. }
  109. //phone view
  110. @media (max-width:800px) {
  111. main {
  112. padding:2em 1.5em 2em 1.5em;
  113. max-width:100%;
  114. }
  115. ul {
  116. padding-left:1.5em;
  117. li {
  118. margin:0;
  119. }
  120. }
  121. }
  122. // css for the services form
  123. form {
  124. p {
  125. padding-left:2em;
  126. }
  127. label {
  128. min-width:10em;
  129. display:inline-block;
  130. padding-left:2em;
  131. }
  132. input {
  133. min-width:15em;
  134. display:inline-block;
  135. margin:0 0 2em 2em;
  136. }
  137. input[type="radio"] {
  138. min-width:5em;
  139. display:inline-block;
  140. margin:0 0 2em 0;
  141. }
  142. input[type="checkbox"] {
  143. margin:0 0 2em 15em;
  144. min-width:0;
  145. }
  146. textarea {
  147. margin-left:2.5em;
  148. }
  149. ul {
  150. list-style-type:none;
  151. }
  152. fieldset {
  153. margin-bottom:2em;
  154. }
  155. }
  156. .hidden {
  157. display:none;
  158. }