-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added first version of pricing overview
- Loading branch information
Showing
3 changed files
with
89 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
.outlinedContainer { | ||
width: 60%; | ||
margin: auto; | ||
border: 1px solid #ccc; /* Slight border */ | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
position: relative; | ||
} | ||
|
||
.alignTopRight { | ||
position: absolute; | ||
top: 0; /* Aligns the container to the top of the parent div */ | ||
right: 0; /* Aligns the container to the right of the parent div */ | ||
margin: 10px; /* Optional: Adjusts margin to ensure it sticks to the very top-right corner */ | ||
} | ||
|
||
.prettyList { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
text-align: left; | ||
} | ||
|
||
.multiColumns { | ||
display: flex; | ||
flex-direction: row; /* Arrange children side by side */ | ||
justify-content: space-around; /* This will space out the product containers evenly */ | ||
align-items: flex-start; /* Align items at the start of the container */ | ||
} | ||
|
||
.productContainer { | ||
margin: 0 50px 10px; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.multiColumns { | ||
flex-direction: column; | ||
align-items: center; /* Center align the product containers on smaller screens */ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters