Files
puppetboard/puppetboard/static/css/puppetboard.css

139 lines
2.3 KiB
CSS

body {
margin: 0;
font-family: "Open Sans", sans-serif;
}
a {
color: #2E5D8C;
text-decoration: none;
}
h1.ui.header.no-margin-bottom {
margin-bottom: 0;
}
.tablesorter-header-inner {
float: left;
}
th.tablesorter-headerAsc::after {
content: '\25b4' !important;
float: right;
}
th.tablesorter-headerDesc::after {
content: '\25be' !important;
float: right;
}
.ui.grid.padding-bottom {
padding-bottom: 40px !important;
}
.status {
width: 47.5%;
text-align: center;
display: block;
}
.count {
width: 14%;
text-align: center;
display: block;
}
.no-margin-top {
margin-top: -35px !important;
}
.absolute {
position: fixed;
bottom: 0;
width: 100%;
background: #E8E8E8;
}
.absolute div {
padding: 1em;
}
.ui.menu.darkblue {
background-color: #2C3E50;
}
.ui.darkblue.header, i.darkblue {
color: #2C3E50;
}
.ui.labels .darkblue.label::before, .ui.darkblue.labels .label::before, .ui.darkblue.label::before {
background-color: #2C3E50;
}
.ui.darkblue.labels .label, .ui.darkblue.label {
background-color: #2C3E50;
border-color: #2C3E50;
color: #FFF;
}
.ui.menu.yellow {
background-color: #F0E965;
}
.ui.yellow.header, i.yellow {
color: #F0E965;
}
.ui.labels .yellow.label::before, .ui.yellow.labels .label::before, .ui.yellow.label::before {
background-color: #F0E965;
}
.ui.yellow.labels .label, .ui.yellow.label {
background-color: #F0E965;
border-color: #F0E965;
}
#scroll-btn-top {
position: fixed;
overflow: hidden;
z-index: 99999999;
opacity: 0;
visibility: hidden;
width: 50px;
height: 48px;
line-height: 48px;
right: 30px;
bottom: 85px;
padding-top: 2px;
background-color: #777777;
text-align: center;
color: #EEE;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
#scroll-btn-top:hover {
background-color: #888;
}
#scroll-btn-top.show {
visibility: visible;
cursor: pointer;
opacity: 1.0;
}
#scroll-btn-top i {
position: absolute;
top: 50%;
left: 50%;
margin: 0;
margin-right: -50%;
transform: translate(-50%, -50%)
}