monit-dashboard/static/monit-dashboard.css

120 lines
1.7 KiB
CSS
Raw Normal View History

.server-link a {
2020-01-26 23:21:03 +00:00
color: #fff;
text-decoration: none;
text-transform: uppercase;
text-decoration: underline;
}
th {
2020-01-26 23:21:03 +00:00
background-color: #999;
padding: 10px;
}
td {
2020-01-26 23:21:03 +00:00
border-bottom: 1px solid #ccc;
padding: 15px;
}
body {
2020-01-26 23:21:03 +00:00
font-family: arial;
}
tr:nth-child(odd) {
2020-01-26 23:21:03 +00:00
background-color: #fff;
}
tr:nth-child(even) {
2020-01-26 23:21:03 +00:00
background-color: #f2f2f2;
}
a {
2020-01-26 23:21:03 +00:00
color: #cb0017;
font-weight: bolder;
}
button.accordion {
2020-01-26 23:21:03 +00:00
color: #FFF;
cursor: pointer;
padding: 18px;
width: 100%;
text-align: center;
border: none;
outline: none;
transition: 0.4s;
margin: 0.6rem 0;
}
button.download-button {
2020-01-26 23:21:03 +00:00
color: white;
background-color: #00a8ff;
cursor: pointer;
padding: 18px;
text-align: center;
border: none;
outline: none;
transition: 0.4s;
float: right;
margin: auto 0;
}
div.download-header {
2020-01-26 23:21:03 +00:00
height: 7%;
background-color: #273c75;
display: flex;
justify-content: flex-end;
padding-right: 20px;
}
div.panel {
2020-01-26 23:21:03 +00:00
padding: 0 18px;
background-color: white;
display: none;
}
div.panel.show {
2020-01-26 23:21:03 +00:00
display: block;
}
.green {
2020-01-26 23:21:03 +00:00
background-color: #79bd8f;
font-size: 20px;
}
.green:hover {
2020-01-26 23:21:03 +00:00
background-color: #588a68;
}
.red {
2020-01-26 23:21:03 +00:00
background-color: #d9534f;
font-size: 20px;
}
.red:hover {
2020-01-26 23:21:03 +00:00
background-color: #c9302c;
}
2019-10-04 09:29:56 +00:00
2019-10-04 15:57:08 +00:00
.canvas-container {
2020-01-20 14:12:23 +00:00
width: 50%;
display: flex;
justify-content: center;
2020-01-26 23:21:03 +00:00
margin-top: 200;
margin-bottom: 100;
2019-10-04 15:57:08 +00:00
}
2019-10-04 09:29:56 +00:00
.canvas-graph {
min-height: 30%;
min-width: 24.5%;
display: inline-block;
position: relative;
background-color: white;
margin: 20px 0;
2020-01-26 23:21:03 +00:00
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
2019-10-04 09:29:56 +00:00
}
2019-10-04 15:57:08 +00:00
.canvas-header {
2020-01-26 23:21:03 +00:00
padding: 1rem;
height: 2rem;
background-color: #F2F2F2;
text-align: center;
2019-10-04 15:57:08 +00:00
}