reset padding and margins to be fixed later
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
parent
3f3918d0ac
commit
e244255cc1
@ -18,35 +18,41 @@
|
||||
body {
|
||||
display: grid;
|
||||
min-height: 100vh;
|
||||
grid-template-rows: 1fr auto;
|
||||
grid-template-rows: auto 1fr auto;
|
||||
grid-template-columns: auto 1fr;
|
||||
grid-template-areas:
|
||||
"header main"
|
||||
"logo title"
|
||||
"nav main"
|
||||
"footer main"
|
||||
;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
header, footer {
|
||||
header {
|
||||
display: contents;
|
||||
}
|
||||
|
||||
#logo {
|
||||
grid-area: logo;
|
||||
}
|
||||
|
||||
#nav {
|
||||
grid-area: nav;
|
||||
}
|
||||
|
||||
#title {
|
||||
grid-area: title;
|
||||
}
|
||||
|
||||
#logo, #nav, footer {
|
||||
background-color: var(--accent-bkg-color);
|
||||
color: var(--accent-txt-color);
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
grid-area: header;
|
||||
}
|
||||
|
||||
header hr {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
main {
|
||||
grid-area: main;
|
||||
background-color: var(--content-bkg-color);
|
||||
color: var(--content-txt-color);
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
footer {
|
||||
@ -67,8 +73,6 @@ nav a {
|
||||
font-size: x-large;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
padding: 10px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
nav a:before {
|
||||
@ -97,23 +101,18 @@ h1, h2, h3, p {
|
||||
|
||||
h1 {
|
||||
font-size: xxx-large;
|
||||
text-align: center;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: xx-large;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: x-large;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: large;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
|
@ -26,13 +26,13 @@
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>tronnet</h1>
|
||||
<hr>
|
||||
<nav>
|
||||
<img id="logo" src="logo.webp">
|
||||
<nav id="nav">
|
||||
<a href="index.html" aria-current="true">Instances</a>
|
||||
<a href="account.html">Account</a>
|
||||
<a href="login.html">Logout</a>
|
||||
</nav>
|
||||
<h1 id="title">Instances</h1>
|
||||
</header>
|
||||
<main>
|
||||
<div id="instance-container">
|
||||
|
Loading…
Reference in New Issue
Block a user