123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- // Standardize palette.
- $blue: #00c;
- $red: #f00;
- $anchor: #06581F;
- $light: #eee;
- $medium: #999;
- $dark: #888;
- // Ensure flexible assets location.
- $images: images;
- /***************************************
- Default Styles
- ************************************** */
- a {
- font-family: Arial;
- }
- html, body {
- margin: 0;
- padding: 0;
- }
- body {
- font: 62.5% Verdana, Helvetica, Arial, sans-serif;
- color: black;
- background: white;
- }
- #container {
- font-size: 1.2em;
- margin: 10px 2em;
- }
- h1 {
- font-size: 2.5em;
- margin-bottom: 0;
- }
- h2 {
- font-size: 1.3em;
- margin-bottom: .5em;
- }
- h3 {
- font-size: 1.1em;
- margin-bottom: 0;
- }
- code {
- font-size: 1.2em;
- }
- a {
- color: $anchor;
- }
- /***************************************
- Chapter Styles
- ************************************** */
- h2 {
- clear: left;
- }
- li {
- padding: 0 3px;
- color: black;
- }
- .horizontal {
- float: left;
- list-style: none;
- margin: 10px;
- width: 33.33%;
- }
- .sub-level {
- background: $light;
- }
- a {
- color: $blue;
- &.mailto {
- background: url(#{$images}/email.png) no-repeat right top;
- padding-right: 18px;
- }
- &.pdflink {
- background: url(#{$images}/pdf.png) no-repeat right top;
- padding-right: 18px;
- }
- &.henrylink {
- background-color: white;
- padding: 2px;
- border: 1px solid black;
- }
- &.external {
- background: white url(#{$images}/external.png) no-repeat 100% 2px;
- padding-right: 16px;
- }
- }
- ul.tragedy {
- border: 1px solid $medium;
- }
- li.afterlink {
- border-right: 4px solid #090;
- }
- table {
- border-collapse: collapse;
- }
- th, td {
- text-align: left;
- padding: 2px 4px;
- }
- .table-heading {
- background-color: black;
- color: white;
- }
- .alt {
- background-color: $light;
- }
- .highlight {
- font-weight: bold;
- font-style: italic;
- }
- .italic {
- font-style: italic;
- }
- .bold {
- font-weight: bold;
- }
- .special {
- color: $red;
- }
- .year {
- background-color: $dark;
- color: white;
- padding: 0 10px;
- text-align: center;
- }
- /*# sourceMappingURL=02.css.map */
|