foundation_and_overrides.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //
  2. // Foundation Variables
  3. @import 'foundation-icons';
  4. @import 'colors/skins';
  5. @import 'colors/links';
  6. @font-face {
  7. font-family: 'OpenSans Light';
  8. src: url('OpenSans-Light.woff') format('woff');
  9. }
  10. @font-face {
  11. font-family: 'OpenSans Italic';
  12. src: url('OpenSans-Italic.woff') format('woff');
  13. }
  14. @font-face {
  15. font-family: 'OpenSans Regular';
  16. src: url('OpenSans-Regular.woff') format('woff');
  17. }
  18. @font-face {
  19. font-family: 'OpenSans Bold';
  20. src: url('OpenSans-Bold.woff') format('woff');
  21. }
  22. @font-face {
  23. font-family: 'Raleway Thin';
  24. src: url('raleway_thin.woff') format('woff');
  25. }
  26. body {
  27. background-color: $white;
  28. color: $black;
  29. font-family: 'OpenSans Regular';
  30. font-size: 13px;
  31. line-height: 18px;
  32. h1 {
  33. font-family: 'OpenSans Bold';
  34. }
  35. h2, h3, h4 {
  36. font-family: 'Raleway Thin';
  37. }
  38. }
  39. p, ol, ul, td {
  40. font-family: 'OpenSans Regular';
  41. font-size: 13px;
  42. line-height: 18px;
  43. }
  44. pre {
  45. background-color: $silver;
  46. padding: 10px;
  47. font-size: 11px;
  48. }
  49. div {
  50. &.field, &.actions {
  51. margin-bottom: 10px;
  52. }
  53. }
  54. #notice {
  55. color: green;
  56. }
  57. .field_with_errors {
  58. padding: 2px;
  59. background-color: red;
  60. display: table;
  61. }
  62. #error_explanation {
  63. width: 450px;
  64. border: 2px solid red;
  65. padding: 7px;
  66. padding-bottom: 0;
  67. margin-bottom: 20px;
  68. background-color: $silver;
  69. h2 {
  70. text-align: left;
  71. font-family: "OpenSans Light";
  72. font-weight: bold;
  73. padding: 5px 5px 5px 15px;
  74. font-size: 12px;
  75. margin: -7px;
  76. margin-bottom: 0px;
  77. background-color: #c00;
  78. color: #fff;
  79. }
  80. ul li {
  81. font-size: 12px;
  82. list-style: square;
  83. }
  84. }