ip.flash.moe/public/style.css

134 lines
2.7 KiB
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
position: relative;
}
html, body {
width: 100%;
height: 100%;
}
body {
font-size: 16px;
line-height: 25px;
font-family: 'Electrolize', Verdana, 'Dejavu Sans', sans-serif;
color: #000;
background-color: #ff9290;
padding: 114px 10px 10px;
}
.background-gradient-top {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 25%;
z-index: 0;
background: -moz-linear-gradient(top, #db5176 0%, #ff9290 100%);
background: -webkit-linear-gradient(top, #db5176 0%, #ff9290 100%);
background: linear-gradient(to bottom, #db5176 0%, #ff9290 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#db5176', endColorstr='#ff9290', GradientType=0);
}
.background-gradient-bottom {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 25%;
z-index: 0;
background: -moz-linear-gradient(top, #ff9290 0%, #4c8999 100%);
background: -webkit-linear-gradient(top, #ff9290 0%, #4c8999 100%);
background: linear-gradient(to bottom, #ff9290 0%, #4c8999 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9290', endColorstr='#4c8999', GradientType=0);
}
.container {
background: #fff;
margin: 0 auto;
max-width: 850px;
width: 100%;
overflow: hidden;
word-break: break-word;
}
@media (prefers-color-scheme: dark) {
body { color: #fff; }
.container { background: #000; }
}
.addrbox {
padding: 4px 8px;
}
.addrbox-v4 .addrbox-label,
.addrbox-v4 .addrbox-copy {
color: #59a063;
}
.addrbox-v6 .addrbox-label,
.addrbox-v6 .addrbox-copy {
color: #fe6c7e;
}
.addrbox-label {
font-size: 1.5em;
line-height: 1.4em;
}
.addrbox-value {
font-family: 'Victor Mono', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
font-size: 2em;
line-height: 1.4em;
}
.addrbox-noscript {
color: inherit;
text-decoration: underline;
text-decoration-style: dashed;
}
.addrbox-noscript:hover,
.addrbox-noscript:focus {
text-decoration-style: solid;
}
.addrbox-noscript:active {
text-decoration-style: dotted;
}
.addrbox-copy {
cursor: pointer;
text-decoration: none;
border: 1px solid transparent;
}
.addrbox-copy:hover,
.addrbox-copy:focus {
border-style: dashed;
border-color: currentColor;
}
.addrbox-copy:active {
border-style: dotted;
}
.info {
padding: 10px;
text-align: center;
font-size: .8em;
line-height: 1.4em;
color: #fff;
}
.info-link {
color: inherit;
text-decoration: underline;
text-decoration-style: dashed;
}
.info-link:hover,
.info-link:focus {
text-decoration-style: solid;
}
.info-link:active {
text-decoration-style: dotted;
}