Skip to content

Commit

Permalink
Update sbcapp.css
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBluefish authored Apr 12, 2024
1 parent 5b6e492 commit 1fcab77
Showing 1 changed file with 50 additions and 19 deletions.
69 changes: 50 additions & 19 deletions sbcapp.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,45 +3,47 @@ body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
}

.hero {
background: radial-gradient(circle at 12% 50%, #2e5e6c 0%, #083f4e 25.9%, #08090a 25.9%, #ff6f3b 24.4%, #ff6f3c 24.5%, #cf5c15 66%);
color: #ffffff;
padding: 1em; /* Unified padding */
background: linear-gradient(35deg, #ff6f35 20%, #ffc93c 24%, #910909 38%, #277ba2);
margin-bottom: 1.5em;
width: 100%;
height: 60%;
display: flex;
flex-direction: column;
align-items: center;
}

.logo {
max-width: 17em; /* Adjusted max-width for responsiveness */
height: auto;
max-height:15em;
background-color:#277ba2;
margin: 1em 0;
border:;
border-radius: 24px;
box-shadow: #020202 2px 3px 7px 4px;
}

.hero-content, .hero-text {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
padding: 10px;
}

.hero h1, .hero h2 {
.hero h1 {
margin: 10px 0; /* Uniform margin */
text-shadow: #0a0a0a 3.5px 3.5px;
text-shadow: #0a0a0a 3px 3px 4px;
}

.hero h1 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-size: 4em; /* Large emphasis for desktop */
}

.hero h2 {
font-size: 2em; /* Clear hierarchy for all sizes */
}

.vertical-nav-bar {
width: 100%;
position: relative;
Expand All @@ -66,12 +68,23 @@ body {
background-color: #ccc;
}

#muscle-group {
background-color:#910909 ;
}

.main {
background: rgb(116, 116, 116);
}
.main, #app {
padding: 1em;
padding: 0.25em;
box-shadow: 0 0 8px rgba(0,0,0,0.2);
border-radius: 10px;
margin: 1em;
width: 90%; /* Ensures content doesn't stretch too wide on larger screens */
border-radius: 3px;
margin: 0.25em;
width:100%; /* Ensures content doesn't stretch too wide on larger screens */
}

#app {
background-color: #79261d;
}

.input-group, .finish {
Expand All @@ -83,23 +96,41 @@ body {

.input-group label, .input-group input, .input-group button,
#submitWorkout, #resetWorkout, button {
width: 100%;
width:fit-content;
padding: 10px;
margin-top: 10px;
border-radius: 5px;
border: 1px solid #080808;
border: 2px solid #080808;
box-shadow: #f7d204 1px 1px 3px 1px;
}

.input-group input {
background-color: rgb(192, 192, 187);
color: #ffc93c;
}

.input-group label, .muscleGroupText {
.input-group label {
color: #ffc93c;
text-shadow: #313030 2px 2px;
}

.exercise, #exerciseName, #numSet {
display: flex;
flex-direction: column;
width: fit-content;

}

#muscleGroupText {
color:#f7d204;
font-size: larger;
box-shadow: #f7d204 1px 1px 3px 1px;
background-color: #277ba2;
border: solid #020202;
border-radius: 4px;
margin: 8px;
padding: 8px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero h1 {
Expand Down

0 comments on commit 1fcab77

Please sign in to comment.