mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 19:10:56 -04:00
* feat: navbar and main components added * feat: add shopping cart * added cart and store components * basic functionality complete * fix: effect * adding more logic and components * basic features * reorg tree and add summary * feat: new stuff * styling: more stuff * changes * as good as itll get * added public --------- Co-authored-by: mike <mike@windows>
33 lines
417 B
CSS
33 lines
417 B
CSS
main {
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.mainHeading {
|
|
font-size: 4rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.sub-heading {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.heading-color {
|
|
color: #0e6c96;
|
|
}
|
|
|
|
.hero-img {
|
|
margin-top: 100px;
|
|
width: 100%;
|
|
max-height: 800px;
|
|
vertical-align: middle;
|
|
object-fit: contain;
|
|
float: left;
|
|
}
|