# HG changeset patch # User Goffi # Date 1561736323 -7200 # Node ID bf33342902ed6d5cab03549cdfaf299f3347106f # Parent 0bc654ab2484d949f15974ba02a35419c1e068e9 css: added classes for text block (warning, emphasis, light-emphasis) + heading-paper + fixed padding on grids diff -r 0bc654ab2484 -r bf33342902ed sat_templates/templates/default/static/styles.css --- a/sat_templates/templates/default/static/styles.css Fri Jun 28 17:37:46 2019 +0200 +++ b/sat_templates/templates/default/static/styles.css Fri Jun 28 17:38:43 2019 +0200 @@ -15,6 +15,7 @@ --color-sec: #448aff; --color-sec--light: #83b9ff; --color-sec--dark: #005ecb; + --color-warning: #8a0000; } /***************** @@ -227,6 +228,21 @@ box-shadow: 0px 0px 6px 1px #000; } +/** text **/ + +.text--warning { + font-weight: bold; + color: var(--color-warning); +} + +.text--emphasis { + font-weight: bold; +} + +.text--light-emphasis { + text-decoration: underline; +} + /** heading **/ .heading__subtitle { @@ -238,6 +254,11 @@ background: var(--color-sec--light); } + +.heading--paper { + font-variant: small-caps; +} + /** instructions **/ .instructions--head { @@ -651,6 +672,7 @@ .grid { display: flex; flex-wrap: wrap; + padding: 0; } ul.grid {