[2025-04-25] Multiple design improvements

- Font size and scaling better for different displays
- Added 88x31 buttons in footer
- Other minor changes to CSS and layouts
This commit is contained in:
Andrew Conlin 2025-04-25 14:45:55 +01:00
parent 5a1ce2af21
commit c51385f72b
18 changed files with 68 additions and 57 deletions

View file

@ -22,6 +22,7 @@ code {
div.container {
margin: 0 auto;
zoom: 1.5;
}
div.content {
@ -38,6 +39,10 @@ div.content {
margin: 0 auto;
position: relative;
}
div.container {
margin: 0 auto;
zoom: 1.4
}
}
@media screen and (max-width: 1080px) {
@ -47,6 +52,10 @@ div.content {
margin: 0 auto;
position: relative;
}
div.container {
margin: 0 auto;
zoom: 1.2
}
}
@media screen and (max-width: 768px) {
@ -56,6 +65,10 @@ div.content {
margin: 0 auto;
position: relative;
}
div.container {
margin: 0 auto;
zoom: 1.0
}
}
body {
@ -75,16 +88,16 @@ pre {
a {
color: #E7D7AD;
text-decoration: none;
border-bottom: 3px solid #FABD2F;
border-radius: 2px;
border-bottom: 2px solid #FABD2F;
border-radius: 1px;
}
a:hover {
color: #000000;
background: #FABD2F;
text-decoration: none;
border-bottom: 3px solid #FABD2F;
border-radius: 2px;
border-bottom: 2px solid #FABD2F;
border-radius: 1px;
}
img {
@ -118,3 +131,11 @@ span.growshrink {
color: #FABD2F;
}
}
p {
font-size: 14px
}
h1 {
font-size: 24px
}