diff options
Diffstat (limited to '')
-rw-r--r-- | pyblackbird_cc/static/css/custom.css | 11 | ||||
-rw-r--r-- | pyblackbird_cc/static/css/project.css | 3 | ||||
-rw-r--r-- | pyblackbird_cc/static/scss/custom.scss | 13 |
3 files changed, 25 insertions, 2 deletions
diff --git a/pyblackbird_cc/static/css/custom.css b/pyblackbird_cc/static/css/custom.css index 833e0a0..5df7099 100644 --- a/pyblackbird_cc/static/css/custom.css +++ b/pyblackbird_cc/static/css/custom.css @@ -6149,3 +6149,14 @@ progress { display: none !important; } } +h2, .h2 { + color: #51635e; +} + +.form-label { + font-weight: 500; +} + +.asteriskField { + color: red; +} diff --git a/pyblackbird_cc/static/css/project.css b/pyblackbird_cc/static/css/project.css index 0f95690..a0a7496 100644 --- a/pyblackbird_cc/static/css/project.css +++ b/pyblackbird_cc/static/css/project.css @@ -34,9 +34,8 @@ body { h1 { color: #657c76; - font-size: 1.8rem; + font-size: 2.0rem; font-weight: bold; - } a { diff --git a/pyblackbird_cc/static/scss/custom.scss b/pyblackbird_cc/static/scss/custom.scss index fc9b6c4..a87a968 100644 --- a/pyblackbird_cc/static/scss/custom.scss +++ b/pyblackbird_cc/static/scss/custom.scss @@ -7,6 +7,7 @@ // 2. Include any default variable overrides here $primary: #51635EFF; $display-font-weight: 600; +$ml-font-label-weight: 500; // 3. Include remainder of required Bootstrap stylesheets @import "../bootstrap/scss/variables"; @@ -22,3 +23,15 @@ $display-font-weight: 600; @import "../bootstrap/scss/buttons"; @import "../bootstrap/scss/bootstrap-utilities"; // 5. Add additional custom code here + +h2 { + color: $primary; +} + +.form-label { + font-weight: $ml-font-label-weight; +} + +.asteriskField { + color: red; +} |