123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- /*
- * Base typography
- */
-
- body {
- background: white;
- color: black;
- font-family: $NotoSans;
- font-size: 0.75rem;
-
- b,
- strong {
- font-family: $NotoSansBold;
- font-weight: normal;
- }
-
- i,
- em {
- font-family: $NotoSansItalic;
- font-style: normal;
- }
- }
-
- header,
- .header {
- margin: 2rem;
- text-align: center;
- }
-
- /* Section headers ("box" class heading) */
- .head {
- padding: 0.5em 0;
- font-size: 120%;
- border-bottom: 1px solid #e1e1e1;
- margin-bottom: 1rem;
- }
-
- /* Links */
- a {
- color: black;
- text-decoration: underline;
- }
-
- a:hover {
- color: $lb900;
- text-decoration: none;
- }
-
- /* Tags */
- .tags {
- font-style: italic;
-
- a,
- a.search_link {
- color: black;
- text-decoration: none;
- }
-
- a:hover,
- a:hover.search_link {
- color: black;
- text-decoration: underline;
- }
- }
-
- /* Dupe for grouped "Details" on browse.php */
- a.search_link {
- color: black;
- text-decoration: none;
-
- &:hover {
- text-decoration: underline;
- }
- }
-
- /**
- * Blockquotes, figures, and captions
- */
-
- blockquote {
- margin: 0.5em 2rem;
- padding: 1rem;
- @include transparent-border($A: 0.1);
- }
-
- caption {
- font-style: italic;
- }
-
- /* code, pre */
- code,
- pre {
- font-family: $NotoMono;
- margin-bottom: 1rem;
- word-wrap: break-word;
- /* word-wrap: pre; */
-
- b,
- strong {
- font-family: $NotoMonoBold;
- }
- }
-
- ul {
- margin-left: 1rem;
- }
-
- /* Markdown Extra new features */
- hr {
- @include transparent-border($A: 0.1);
- margin: 2rem auto;
- width: 66%;
- }
-
- .footnotes {
- /* display: flex; */
-
- ol {
- margin: -0.5rem 0 0 -1rem;
- display: flex;
- flex-direction: column;
-
- li:before {
- /* display: none; */
- }
- }
-
- p {
- /* align-self: flex-start; */
- }
- }
-
- /* Font Awesome ugliness fix */
- .footnote-backref {
- font-family: sans-serif;
- }
-
- /* Definition lists */
- dl {
- margin-top: 0.5rem;
-
- dt {
- font-variant: small-caps;
- font-size: larger;
- }
-
- dd {
- margin: 0 0 0.5rem 0.5rem;
- }
- }
-
- textarea {
- font-family: $NotoMono;
-
- b,
- strong {
- font-family: $NotoMonoBold;
- }
- }
-
- /* nobullet */
- ul.nobullet,
- .tags .tags ul.nobullet {
- /* display: inline-block; */
- margin: 0;
-
- li {
- list-style-type: none;
- }
- }
-
- /* Bullets (home page) */
- ul.stats li {
- padding: 0 0 1px 0;
- }
-
- ul.poll li {
- padding: 0 0 0 10px;
- margin: 0;
- clear: left;
-
- .graph {
- margin-bottom: 3px;
- padding-left: 20px;
- }
- }
-
- /* ToC */
- .navigation_list {
- margin-bottom: 1rem;
- }
-
- /* Alerts, Toolbox, etc. */
- .alertbar {
- a {
- color: black;
- text-decoration: none;
- }
-
- a:hover {
- text-decoration: underline;
- }
- }
-
- /* Last edited */
- /*
- .last_edited {
- opacity: 0.75;
- }
- */
|