0
0
This repository has been archived on 2024-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
dns-watch-2022/ui/jhtml-compat/index.css
thetek c3a664f4e2
footer, subheader and github button (#10)
*  'by tjdev.de' subheader

*  add github button

*  add footer

* 🩹 fix unfitting scrollbar color

* 📦 compile html

* 📦 compile jhtml
2021-05-07 17:41:30 +02:00

256 lines
4.5 KiB
CSS
Vendored

*stop()
* {
box-sizing: border-box !important;
}
html, body {
background-color: #21252b;
color: #d3d7de;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Inter", "Segoe UI", "Helvetica Neue", "Helvetica", sans-serif;
margin: 0;
overflow-x: hidden;
padding: 0;
scrollbar-color: #4d5765 #21252b !important;
}
input, button {
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Inter", "Segoe UI", "Helvetica Neue", "Helvetica", sans-serif;
}
#content {
min-height: calc(100vh - 9rem);
}
#header {
height: 4rem;
padding: 0.5rem;
width: 100vw;
}
#header button {
background-color: #21252b;
border: none;
border-radius: 0.5rem;
color: #4c5666;
cursor: pointer;
float: right;
height: 3rem;
transition: all 0.3s ease;
width: 3rem;
}
#header button:hover {
background-color: #2c3139;
color: #99a2b2;
}
#header button.spaceleft {
margin-left: 1rem;
}
#title {
margin-bottom: 5rem;
margin-top: 5rem;
text-align: center;
}
#title h1 {
font-size: 4rem;
font-weight: 200;
margin-bottom: 1rem;
}
#title h1 span {
color: #4c5666;
}
#title span {
color: #7c889c;
}
#title span a {
color: #7c889c;
}
#search {
text-align: center;
margin-bottom: 5rem;
}
#search #searchbar .buttonspacer {
display: inline-block;
width: 3.5rem;
}
#search #searchbar input {
background-color: #2c3139;
border: none;
border-radius: 0.5rem 0 0 0.5rem;
color: #d3d7de;
font-size: 1.5rem;
font-weight: 300;
height: 3rem;
padding: 0.5rem 1rem;
transition: all 0.3s ease;
vertical-align: bottom;
}
#search #searchbar input:focus {
background-color: #373e48;
outline: none;
}
#search #searchbar button {
border: none;
cursor: pointer;
height: 3rem;
transition: all 0.3s ease;
vertical-align: bottom;
width: 3rem;
}
#search #searchbar button#dnswatch-search-submit {
background-color: #373e48;
border-radius: 0 0.5rem 0.5rem 0;
color: #7c889c;
}
#search #searchbar button#dnswatch-search-submit:hover {
background-color: #424a56;
color: #d3d7de;
}
#search #searchbar button#help {
background-color: transparent;
border-radius: 0.5rem;
color: #4c5666;
margin-left: 0.5rem;
}
#search #searchbar button#help:hover {
background-color: #2c3139;
color: #99a2b2;
}
#search small {
display: block;
margin-top: 1rem;
color: #7c889c;
}
#search #loadani {
display: none;
margin-top: 1rem;
visibility: hidden;
}
#search #loadani #spinner {
animation: 1s linear infinite spinner;
border: 2px solid transparent;
border-bottom: 2px solid #61afef;
border-radius: 0.5rem;
display: inline-block;
height: 1rem;
width: 1rem;
}
#search #loadani span {
color: #61afef;
margin-left: 0.5rem;
}
#search #invaliddomain {
color: #e06c75;
display: none;
margin-top: 1rem;
visibility: hidden;
}
#search #invaliddomain .feather {
vertical-align: -0.3rem;
}
#results small.random {
color: #4c5666;
display: block;
font-size: 0.8rem;
margin-top: 1rem;
text-align: center;
}
#results small.random button {
background: none;
border: none;
color: #626e83;
cursor: pointer;
font-size: 0.8rem;
outline: none;
text-decoration: underline;
}
#results table {
margin-left: 25vw;
width: 50vw;
}
#results table tr {
height: 3rem;
}
#results table tr td.status {
width: 3rem;
}
#results table tr td.status.check {
color: #98c379;
}
#results table tr td.status.cross {
color: #e06c75;
}
#results table tr td.status.ref {
color: #61afef;
}
#results table tr td.status.offline {
color: #d19a66;
}
#results table tr td.icon {
border-left: solid transparent 2rem;
width: 3rem;
}
#results table tr td.name small {
color: #7c889c;
margin-left: 1rem;
}
#results table tr td.desc {
text-align: right;
}
#results table tr td.desc.blocked {
color: #e06c75;
}
#results table tr td.desc.ref {
color: #61afef;
}
#results table tr td.help {
text-align: right;
width: 3rem;
}
#results table tr td.help button {
background-color: #21252b;
border: none;
border-radius: 0.5rem;
color: #4c5666;
cursor: pointer;
height: 2rem;
padding: 0.4rem;
transition: all 0.3s ease;
width: 2.1rem;
}
#results table tr td.help button:hover {
background-color: #2c3139;
color: #99a2b2;
}
#results table tr td.help button svg {
height: 1.2rem;
vertical-align: -0.2rem;
width: 1.2rem;
}
#footer {
color: #7c889c;
height: 9rem;
padding-top: 5rem;
text-align: center;
}
#footer a {
color: #7c889c;
}
.uncolored-svg {
filter: invert(0.8);
}
@keyframes spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/*# sourceMappingURL=index.css.map */