diff --git a/ui/src/css/components/home/ComposeDisplay.css b/ui/src/css/components/home/ComposeDisplay.css new file mode 100644 index 0000000..357f4a2 --- /dev/null +++ b/ui/src/css/components/home/ComposeDisplay.css @@ -0,0 +1,31 @@ +.detail-button { + background-color: #428bca; + border: none; + color: white; + padding: 6px 18px; + text-align: center; + border-radius: 4px; + float: right; +} + +.compose-button { + background-color: #428bca; + border: none; + color: white; + padding: 10px 24px; + text-align: center; + margin-top: 10px; + display: block; + border-radius: 4px; + position: relative; + float: left; +} + +.compose-node-details { + margin-top: 30px; + padding: 20px; + padding-bottom: 40px; + border-radius: 4px; + background-color: #f8f8f8; +} + diff --git a/ui/src/css/components/home/DetailDisplay.css b/ui/src/css/components/home/DetailDisplay.css new file mode 100644 index 0000000..c5154bb --- /dev/null +++ b/ui/src/css/components/home/DetailDisplay.css @@ -0,0 +1,9 @@ +.details { + margin-top: 30px; + padding: 20px; + padding-bottom: 40px; + width: 100%; + border-radius: 4px; + background-color: #f8f8f8; +} + diff --git a/ui/src/customized.css b/ui/src/css/components/home/Home.css similarity index 68% rename from ui/src/customized.css rename to ui/src/css/components/home/Home.css index e707ff2..4805d73 100644 --- a/ui/src/customized.css +++ b/ui/src/css/components/home/Home.css @@ -50,38 +50,6 @@ hr.separator { height: 2px; } -.detail-button { - background-color: #428bca; - border: none; - color: white; - padding: 6px 18px; - text-align: center; - border-radius: 4px; - float: right; -} - -.compose-button { - background-color: #428bca; - border: none; - color: white; - padding: 10px 24px; - text-align: center; - margin-top: 10px; - display: block; - border-radius: 4px; - position: relative; - float: left; -} - -.details { - margin-top: 30px; - padding: 20px; - padding-bottom: 40px; - width: 100%; - border-radius: 4px; - background-color: #f8f8f8; -} - .resource { margin-bottom: 10px; padding: 20px; @@ -90,30 +58,6 @@ hr.separator { border-radius: 4px; } -.in-use-resource { - margin-bottom: 10px; - padding: 20px; - height: 75px; - background-color: #00cc44; - border-radius: 4px; -} - -.warning-resource { - margin-bottom: 10px; - padding: 20px; - height: 75px; - background-color: #cccc00; - border-radius: 4px; -} - -.critical-resource { - margin-bottom: 10px; - padding: 20px; - height: 75px; - background-color: #e60000; - border-radius: 4px; -} - /* * Sidebar */ @@ -192,3 +136,7 @@ hr.separator { border-radius: 50%; } +.compose-node-button { + margin-right: 20px; +} + diff --git a/ui/src/css/components/home/NodeList.css b/ui/src/css/components/home/NodeList.css new file mode 100644 index 0000000..ffd5a27 --- /dev/null +++ b/ui/src/css/components/home/NodeList.css @@ -0,0 +1,10 @@ +.node-detail-button { + background-color: #428bca; + border: none; + color: white; + padding: 6px 18px; + text-align: center; + border-radius: 4px; + float: right; +} + diff --git a/ui/src/css/components/home/ResourceList.css b/ui/src/css/components/home/ResourceList.css new file mode 100644 index 0000000..2c7dbe0 --- /dev/null +++ b/ui/src/css/components/home/ResourceList.css @@ -0,0 +1,24 @@ +.in-use-resource { + margin-bottom: 10px; + padding: 20px; + height: 75px; + background-color: #00cc44; + border-radius: 4px; +} +.warning-resource { + margin-bottom: 10px; + padding: 20px; + height: 75px; + background-color: #cccc00; + border-radius: 4px; +} + +.critical-resource { + margin-bottom: 10px; + padding: 20px; + height: 75px; + background-color: #e60000; + border-radius: 4px; +} + + diff --git a/ui/src/css/customized.css b/ui/src/css/customized.css new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ui/src/css/customized.css @@ -0,0 +1 @@ + diff --git a/ui/src/index.html b/ui/src/index.html index bde32af..86f0d3c 100644 --- a/ui/src/index.html +++ b/ui/src/index.html @@ -4,7 +4,6 @@