diff options
Diffstat (limited to 'assets/css/styles.css')
-rw-r--r-- | assets/css/styles.css | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/assets/css/styles.css b/assets/css/styles.css new file mode 100644 index 0000000..c451b81 --- /dev/null +++ b/assets/css/styles.css @@ -0,0 +1,109 @@ +.banner { + color: #e7eaf6 !important; +} + +.ml-18 { + margin-left: 9rem; +} + +.mr-18 { + margin-right: 9rem; +} + +.btn-primary { + background: #38598b !important; + color: #ffffff !important; +} + +.primary-color { + background: #e7eaf6; +} + +.secondary-color { + background: #a2a8d3; +} + +.third-color { + background: #38598b; +} + +.fourth-color { + background: #113f67; +} + +.sidebar { + border: 1px solid #dadff1; + border-radius: 4px; + background: #f3f3f3; + justify-content: space-between; +} + +.content { + border: 1px solid #dadff1; + border-radius: 4px; + background: #f3f3f3; +} + +.sidebar-element { + border-bottom: 1px solid #38598b; + color: #113f67; +} + +.flex-container { + display: flex; + flex-flow: row; +} + +.navigation-element { + display: flex; + flex: 1 100px; +} + +.end-justified { + justify-content: end; +} + +.pagination { + font-size: 18px; +} + +body { + font-family: Roboto, Helvetica, Arial, sans-serif !important; + margin: 0; +} + +a { + color: #38598b; +} + +p { + font-size: 22px; +} + +h1 { + color: #113f67 !important; +} + +h2 { + color: #155084 !important; +} + +h3 { + color: #285f8a !important; +} + +pre { + border: 1px #dadff1 solid; + border-radius: 4px; +} + +li::marker { + color: #155084; +} + +:not(.sidebar-element) li { + font-size: 20px; + list-style-type: disc; + margin-top: .7em; + line-height: 1em; +} |