More stuff

This commit is contained in:
Jimbo 2024-09-10 22:11:11 -04:00
parent c3e5833266
commit 4146e80af4
3 changed files with 5 additions and 7 deletions

View file

@ -1,3 +1,3 @@
# Jimweb
## Jimbo's Landing Page
Jimbo's landing page and whatnot
This is the landing page for https://jimbosfiles.com.

View file

@ -53,7 +53,7 @@ header img {
position: relative;
width: calc(14em * var(--button-scale)); /* Adjust the base width as needed */
height: calc(4em * var(--button-scale)); /* Adjusted height to fit two lines of text */
transition: filter 0.3s, opacity 0.3s, transform 0.3s; /* Smooth transition for greyscale, opacity, and transform */
transition: filter 0.3s, opacity 0.3s, transform 0.3s; /* Transition for greyscale, opacity, and transform */
}
.custom-button:hover {
@ -97,7 +97,6 @@ header img {
.button-content .button-text {
font-size: calc(1em * var(--button-scale));
color: #333;
white-space: nowrap; /* Ensure the text doesn't wrap */
}
.button-content .button-subtext {
@ -126,15 +125,13 @@ header img {
@media (max-width: 800px) {
header {
position: relative; /* Keep header at the top */
margin-left: 0;
margin-top: 0;
margin-bottom: 0;
margin-bottom: 1em;
}
body {
height: unset;
padding-top: 1em; /* Add space for footer */
justify-content: flex-start; /* Ensure content starts from the top */
overflow-y: auto; /* Allow vertical scrolling when content exceeds viewport */
}

File diff suppressed because one or more lines are too long