1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- //
- // Foundation Variables
- @import 'foundation-icons';
- @import 'colors/skins';
- @import 'colors/links';
- @font-face {
- font-family: 'OpenSans Light';
- src: url('OpenSans-Light.woff') format('woff');
- }
- @font-face {
- font-family: 'OpenSans Italic';
- src: url('OpenSans-Italic.woff') format('woff');
- }
- @font-face {
- font-family: 'OpenSans Regular';
- src: url('OpenSans-Regular.woff') format('woff');
- }
- @font-face {
- font-family: 'OpenSans Bold';
- src: url('OpenSans-Bold.woff') format('woff');
- }
- @font-face {
- font-family: 'Raleway Thin';
- src: url('raleway_thin.woff') format('woff');
- }
- body {
- background-color: $white;
- color: $black;
- font-family: 'OpenSans Regular';
- font-size: 13px;
- line-height: 18px;
- h1 {
- font-family: 'OpenSans Bold';
- }
- h2, h3, h4 {
- font-family: 'Raleway Thin';
- }
- }
- p, ol, ul, td {
- font-family: 'OpenSans Regular';
- font-size: 13px;
- line-height: 18px;
- }
- pre {
- background-color: $silver;
- padding: 10px;
- font-size: 11px;
- }
- div {
- &.field, &.actions {
- margin-bottom: 10px;
- }
- }
- #notice {
- color: green;
- }
- .field_with_errors {
- padding: 2px;
- background-color: red;
- display: table;
- }
- #error_explanation {
- width: 450px;
- border: 2px solid red;
- padding: 7px;
- padding-bottom: 0;
- margin-bottom: 20px;
- background-color: $silver;
- h2 {
- text-align: left;
- font-family: "OpenSans Light";
- font-weight: bold;
- padding: 5px 5px 5px 15px;
- font-size: 12px;
- margin: -7px;
- margin-bottom: 0px;
- background-color: #c00;
- color: #fff;
- }
- ul li {
- font-size: 12px;
- list-style: square;
- }
- }
|