servnest/less/form.less

104 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-01-22 21:58:46 +01:00
form {
2022-04-18 16:05:00 +02:00
margin-left: 50px;
margin-right: 50px;
text-align: center;
@media (max-width: 500px) {
margin-left: 0px;
margin-right: 0px;
}
2021-01-22 21:58:46 +01:00
}
2021-01-23 17:26:46 +01:00
input, select {
2022-04-18 16:05:00 +02:00
border-radius: 12px;
font-size: @fontSize;
margin: 5px;
padding: 10px;
border-style: solid;
border-width: 2px;
&:hover {
border-width: 3px;
padding: 9px;
}
&:focus {
border-width: 4px;
padding: 8px;
}
@media @light {
background-color: @lightColor;
color: @darkColor;
border-color: @darkColor;
}
@media @dark {
background-color: @darkColor;
color: @lightColor;
border-color: @lightColor;
}
2021-01-22 21:58:46 +01:00
}
input[type=text] {
2022-04-18 16:05:00 +02:00
font-family: monospace;
}
2021-01-22 21:58:46 +01:00
input[type=submit] {
2022-04-18 16:05:00 +02:00
margin: 22px;
2021-01-22 21:58:46 +01:00
}
input#subdomain, input#ttl-value {
2022-04-18 16:05:00 +02:00
text-align: right;
}
#password {
2022-04-18 16:05:00 +02:00
width: 32ch;
text-align: center;
}
#username {
2022-04-18 16:05:00 +02:00
width: 16ch;
}
#keytag {
2022-04-18 16:05:00 +02:00
width: 7ch;
}
input:invalid+span::after {
2022-04-18 16:05:00 +02:00
content: '✖';
2021-01-23 17:26:46 +01:00
}
input:valid+span::after {
2022-04-18 16:05:00 +02:00
content: ''; // ✓
}
input+span::after {
2022-04-18 16:05:00 +02:00
display: inline-block;
width: 20px;
font-size: 30px;
padding-left: 20px;
font-family: monospace;
}
label.aboutInputCondition {
2022-04-18 16:05:00 +02:00
display: block;
font-size: @fontSize - 10%;
}
fieldset {
2022-04-18 16:05:00 +02:00
border-radius: 20px;
border-width: 2px;
border-style: solid;
display: flex;
flex-direction: row;
justify-content: center;
@media @light {
border-color: @darkColor;
}
@media @dark {
border-color: @lightColor;
}
2021-01-23 17:26:46 +01:00
}