xmr-pool-site/site.css

236 lines
3.1 KiB
CSS

*,body,div,p,input {
font-family: DejaVu Sans, Helvetica, Arial;
font-size: 14px;
}
h1 {
font-size: 20px;
font-weight: bold;
}
#debugpane {
visibility: visible;
position: absolute;
bottom: 5px;
left: 5px;
right: 5px;
height: 100px;
}
#debugpane > textarea {
display: block;
width: 100%;
height: 100%;
}
body {
padding: 0px;
margin: 0px;
border: 0px;
}
#sitebox {
position: absolute;
height: 100%;
width: 100%;
}
#header {
display: block;
width: 100%;
background-color: #40E0E0;
padding: 0px;
}
#footer {
position: absolute;
bottom: 0%;
display: block;
width: 100%;
background-color: #40E0E0;
padding: 0px;
}
#navigation {
display: block;
width: 100%;
background-color: #40C0C0;
}
#statistics {
display: block;
width: 100%;
background-color: #40D0D0;
}
#pagecontent {
display: block;
padding-top: 20px;
padding-left: 30px;
}
#header > .box {
position: relative;
display: block;
left: 0%;
right: 100%;
top: 0%;
bottom: 100%;
padding: 10px;
}
#header #title {
font-size: 28px;
display:inline;
padding: 10px;
padding-left: 30px;
padding-right: 20px;
color: #208080;
}
#header #subtitle {
font-size: 20px;
font-style:italic;
font-family: DejaVu;
display: inline;
color: #40C0C0;
}
#footer > .box {
position: relative;
display: block;
left: 0%;
right: 0%;
top: 0%;
bottom: 100%;
padding: 10px;
}
#navigation > .box {
position: relative;
display: block;
left: 0%;
right: 100%;
top: 0%;
bottom: 100%;
padding: 0px;
padding-left: 30px;
}
#navigation .nav-item {
display: inline-block;
top: 0px;
bottom: 0px;
padding: 10px;
padding-left: 20px;
padding-right: 20px;
font-size: 14px;
}
#statistics > .box {
position: relative;
display: block;
left: 0%;
right: 100%;
top: 0%;
bottom: 100%;
padding: 3px;
padding-left: 30px;
}
.nav-item:any-link {
font-style: normal;
font-variant:normal;
text-decoration:none;
color: #60FFFF;
}
.nav-item:hover {
background-color: #50E0E0;
color: #309090;
}
.nav-item.selected {
background-color: #50E0E0;
color: #206060;
}
#statistics > .box > span {
display: inline-block;
padding: 5px;
margin: 0px;
color: white;
font-weight: lighter;
font-style: italic;
}
#statistics > .box > span > span::before {
content: "\A";
display: block;
}
#statistics > .box > span ~ span {
border-left: 1px solid #60FFFF;
padding-left: 10px;
}
#statistics > .box > span > span {
font-weight: normal;
color: black;
font-style: normal;
}
.tooltip {
position: relative;
}
.tooltiptext {
visibility: hidden;
background-color: #777;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 3px;
position: absolute;
z-index: 1;
top: 100%;
left: 40%;
margin-left: -140px;
width: 280px;
opacity: 0;
transition: opacity 1s;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent #777 transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
transition: opacity 1s;
}
.small {
font-size: 10px;
}