You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
resources-manager-webui/public/css/style.css

42 lines
748 B
CSS

body{
top: 0px;
word-wrap:break-word;
text-rendering:optimizelegibility;
margin:0 auto;font-family : "lucida grande", "gill sans", arial, sans-serif;
margin-left: 1em;
margin-right: 1em;
margin-top: 1em;
display: grid;
grid-template-areas: "header header"
"nav content"
"footer footer";
grid-template-columns: 20% auto;
}
body header {
grid-area: header;
text-align: center;
}
body nav {
grid-area: nav;
}
section#main {
grid-area: content;
}
body footer {
grid-area: footer;
}
form{
display: grid;
grid-template-columns: 200px 1fr;
}
form label {
grid-column: 1 / 2;
}
form input, form button {
grid-column: 2 / 3;
}