8 changed files with 150 additions and 17 deletions
@ -0,0 +1,68 @@
|
||||
/* |
||||
------------------------------------------------------------------------------------------------------------------------ |
||||
####### css ####### Copyright (c) 2021 mls-361 ##################################################### MIT License ####### |
||||
------------------------------------------------------------------------------------------------------------------------ |
||||
*/ |
||||
|
||||
@charset "utf-8"; |
||||
|
||||
@import url("normalize.css"); |
||||
@import url("variables.css"); |
||||
|
||||
html, body { |
||||
color: var(--color); |
||||
background-color: var(--bg-color); |
||||
} |
||||
|
||||
.container { |
||||
max-width: 80rem; |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
padding-left: 1rem; |
||||
padding-right: 1rem; |
||||
} |
||||
|
||||
main { |
||||
margin-top: 2rem; |
||||
} |
||||
|
||||
.dashboard { |
||||
display: flex; |
||||
flex-direction: row; |
||||
flex-wrap: wrap; |
||||
justify-content: center; |
||||
} |
||||
|
||||
.panel { |
||||
margin: 5px; |
||||
min-width: 21rem; |
||||
min-height: 20rem; |
||||
text-align: center; |
||||
font-size: 1.5rem; |
||||
color: black; |
||||
} |
||||
|
||||
.panel > p { |
||||
} |
||||
|
||||
.total { |
||||
background-color: #0277bd; |
||||
} |
||||
|
||||
.failed { |
||||
background-color: #f24c4c; |
||||
} |
||||
|
||||
.running { |
||||
background-color: #28c2d1; |
||||
} |
||||
|
||||
p.value { |
||||
font-size: 4rem; |
||||
font-weight: bold; |
||||
} |
||||
|
||||
/* |
||||
######################################################################################################## @(°_°)@ ####### |
||||
*/ |
||||
|
@ -0,0 +1,10 @@
|
||||
/** |
||||
* Minified by jsDelivr using clean-css v4.2.3. |
||||
* Original file: /npm/modern-normalize@1.1.0/modern-normalize.css |
||||
* |
||||
* Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files |
||||
*/ |
||||
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ |
||||
*,::after,::before{box-sizing:border-box}html{-moz-tab-size:4;tab-size:4}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}body{font-family:system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji'}hr{height:0;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item} |
||||
/*# sourceMappingURL=/sm/b8ae781793ee4eb86edef3f2a2ac43a5575d063ed8cd287d7553f9f1b2776616.map */ |
||||
|
@ -0,0 +1,15 @@
|
||||
/* |
||||
------------------------------------------------------------------------------------------------------------------------ |
||||
####### css ####### Copyright (c) 2021 mls-361 ##################################################### MIT License ####### |
||||
------------------------------------------------------------------------------------------------------------------------ |
||||
*/ |
||||
|
||||
:root { |
||||
--color: #ffffff; |
||||
--bg-color: #1b2b34; |
||||
} |
||||
|
||||
/* |
||||
######################################################################################################## @(°_°)@ ####### |
||||
*/ |
||||
|
Loading…
Reference in new issue