Skip to content

Commit

Permalink
Add rules to style.css specific to chosen index.html layout
Browse files Browse the repository at this point in the history
  • Loading branch information
blujai831 committed Nov 5, 2024
1 parent a54ede1 commit bc3cdc8
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ body {
background: black;
color: white;
font-family: sans-serif;
font-size: 16pt;
}

#map {
Expand All @@ -12,3 +13,41 @@ body {
height: calc(80vh - 20em);
border-radius: 2em;
}

h1 {
font-size: 32pt;
}
h2 {
font-size: 29pt;
}
h3 {
font-size: 26pt;
}
h4 {
font-size: 23pt;
}
h5 {
font-size: 20pt;
}
h6 {
font-size: 18pt;
}

#inventory {
text-align: left;
width: fit-content;
margin: auto;
}

#inventory h2 {
font-size: 16pt;
}

#inventory ul {
max-height: 6em;
overflow-y: scroll;
}

button {
font-size: 100%;
}

0 comments on commit bc3cdc8

Please sign in to comment.