1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/static/nryg.less

39 lines
709 B
Text
Raw Normal View History

2018-05-15 10:33:24 +00:00
@background-color: #0d193b;
@text-color: #a0ccff;
@accent-color: white;
2018-05-14 08:43:20 +00:00
body {
font-family: sans-serif;
2018-05-15 10:33:24 +00:00
color: @text-color;
background-color: @background-color;
2018-05-14 08:43:20 +00:00
}
h1, h2, h3, h4, h5, h6 {
2018-05-15 10:33:24 +00:00
color: @accent-color;
2018-05-14 08:43:20 +00:00
}
2018-05-26 08:50:54 +00:00
input[type="text"], input[type="password"] {
2018-05-15 10:33:24 +00:00
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
color: @text-color;
border: none;
border-bottom: 1px dashed @text-color;
padding: 2px;
2018-05-26 08:50:54 +00:00
margin: 1px;
2018-05-15 10:33:24 +00:00
font-size: medium;
font-family: sans-serif;
}
2018-05-26 08:50:54 +00:00
.input-grid {
display: grid;
label {
margin: 3px;
grid-column: 1;
max-width: 120px;
}
input {
grid-column: 2;
}
}