Update page layout
- Add more buttons - Style <hr> elements - Remove 'pixel nes' font from <h3> and <h4> elements - Change footer grid column sizes to auto (previously 1fr) - Add 5px top margin to sidebar buttons
This commit is contained in:
parent
f3694af95e
commit
858312f77a
8 changed files with 37 additions and 14 deletions
|
@ -54,9 +54,7 @@ select {
|
|||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4 {
|
||||
h2 {
|
||||
font-family: "pixel nes", sans-serif;
|
||||
}
|
||||
|
||||
|
@ -69,6 +67,11 @@ p {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
border-top: 1px solid var(--foreground);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--links);
|
||||
text-decoration: underline dotted;
|
||||
|
@ -167,7 +170,7 @@ .navbar {
|
|||
|
||||
footer {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-template-columns: repeat(2, auto);
|
||||
grid-template-rows: 1fr;
|
||||
grid-column-gap: 0;
|
||||
grid-row-gap: 0;
|
||||
|
@ -334,3 +337,7 @@ .calculator-spec-table td {
|
|||
.calculator-spec-table tr td:first-child {
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
.sidebar > .section > button {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue