|
|
@ -11,6 +11,7 @@ body { |
|
|
|
font-variation-settings: var(--font-mono), var(--font-casl), var(--font-wght), var(--font-slnt), var(--font-rep-roman); |
|
|
|
font-variation-settings: var(--font-mono), var(--font-casl), var(--font-wght), var(--font-slnt), var(--font-rep-roman); |
|
|
|
background: lightgrey; |
|
|
|
background: lightgrey; |
|
|
|
margin: 0; |
|
|
|
margin: 0; |
|
|
|
|
|
|
|
transition: all 200ms; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
nav { |
|
|
|
nav { |
|
|
@ -30,22 +31,26 @@ main { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
flex-direction: column; |
|
|
|
position: absolute; |
|
|
|
position: absolute; |
|
|
|
top: 25%; |
|
|
|
margin-top: 4ch; |
|
|
|
left: 50%; |
|
|
|
left: 50%; |
|
|
|
margin-right: -50%; |
|
|
|
margin-right: -50%; |
|
|
|
transform: translate(-50%, -50%); |
|
|
|
max-width: 1000px; |
|
|
|
|
|
|
|
transform: translateX(-50%); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
th, td { |
|
|
|
th, td { |
|
|
|
padding: 0 0.5ch; |
|
|
|
padding: 0 0.5ch; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
tr:nth-child(even) { |
|
|
|
|
|
|
|
background-color: #dddddd; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.section { |
|
|
|
.section { |
|
|
|
border: 1px #666 solid; |
|
|
|
border: 1px #666 solid; |
|
|
|
border-radius: 1ch; |
|
|
|
border-radius: 1ch; |
|
|
|
background: white; |
|
|
|
background: white; |
|
|
|
box-shadow: 0.5ch 0.5ch 1ch #bbb; |
|
|
|
box-shadow: 0.5ch 0.5ch 1ch #bbb; |
|
|
|
padding: 1ch; |
|
|
|
padding: 2ch; |
|
|
|
margin-bottom: 2ch; |
|
|
|
margin-bottom: 2ch; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -72,9 +77,58 @@ h4 { |
|
|
|
margin: 0 1ch; |
|
|
|
margin: 0 1ch; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#id_domain { flex-grow: 1;} |
|
|
|
|
|
|
|
#id_location { flex-grow: 5;} |
|
|
|
#id_to { flex-grow: 1;} |
|
|
|
#id_to { flex-grow: 1;} |
|
|
|
|
|
|
|
|
|
|
|
.ov-domains { |
|
|
|
.ov-domains { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
flex-direction: column; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
a { |
|
|
|
|
|
|
|
text-decoration: none; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
input, select { |
|
|
|
|
|
|
|
border-radius: 0.5ch; |
|
|
|
|
|
|
|
border-width: 1px; |
|
|
|
|
|
|
|
padding: 0.5ch 1ch; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) { |
|
|
|
|
|
|
|
body { |
|
|
|
|
|
|
|
background: black; |
|
|
|
|
|
|
|
color: white; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nav { |
|
|
|
|
|
|
|
background-color: #111; |
|
|
|
|
|
|
|
border: 1px #333 solid; |
|
|
|
|
|
|
|
box-shadow: 0.5ch 0.5ch 1ch #222; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.section { |
|
|
|
|
|
|
|
border: 1px #333 solid; |
|
|
|
|
|
|
|
background: #111; |
|
|
|
|
|
|
|
box-shadow: 0.5ch 0.5ch 1ch #222; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
a { |
|
|
|
|
|
|
|
color: #8fb0ff; |
|
|
|
|
|
|
|
font-weight: bold; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
input, select { |
|
|
|
|
|
|
|
color: white; |
|
|
|
|
|
|
|
border-radius: 0.5ch; |
|
|
|
|
|
|
|
border-width: 1px; |
|
|
|
|
|
|
|
padding: 0.5ch 1ch; |
|
|
|
|
|
|
|
border-color: #666; |
|
|
|
|
|
|
|
background: #111; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
input[type="submit"] { |
|
|
|
|
|
|
|
background: #444; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
tr:nth-child(even) { |
|
|
|
|
|
|
|
background-color: #000; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|