Skip to content

Commit

Permalink
Update flash1.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Fr4nkFletcher authored Feb 6, 2024
1 parent 5fcefe2 commit 76749fb
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions flash1.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,47 @@
body, html {
height: 100%;
margin: 0;
}
body {
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #f0f0f0;
color: #333;
transition: background-color 0.3s, color 0.3s;
}
.content {
flex: 1;
width: auto;
max-width: 600px;
margin: 20px auto;
margin-bottom: auto; /* Adjusted to auto to make content float */
padding: 20px;
background: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
border-radius: 8px;
overflow: auto;
position: relative; /* Ensure it's above the footer */
z-index: 1;
}
.footer {
h1 {
font-size: 1.5em; /* Smaller font size for heading */
text-align: center;
white-space: nowrap; /* Ensure it stays on one line */
overflow: hidden;
text-overflow: ellipsis;
}
.footer {
width: 100%;
padding: 12px;
background: #f8f9fa;
border-top: 1px solid #e9ecef;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
z-index: 2; /* Ensure footer is above everything else */
}
@media (prefers-color-scheme: dark) {
body {
Expand All @@ -56,7 +68,7 @@
</head>
<body>
<div class="content">
<h1>πŸš€ Cheap-Yellow-Marauder Web Flasher πŸš€</h1>
<h2>πŸš€ Cheap-Yellow-Marauder Web Flasher πŸš€</h2>
<p>Choose your hardware</p>
<ul class="radios">
<li>
Expand Down

0 comments on commit 76749fb

Please sign in to comment.