generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lee Calcote <[email protected]>
- Loading branch information
1 parent
d8288a1
commit 36ad9ec
Showing
9 changed files
with
207 additions
and
176 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
.product-section { | ||
display: grid; | ||
gap: 20px; | ||
grid-template-columns: 1fr 1fr 1fr; | ||
a { | ||
color: $white; | ||
} | ||
@media (max-width: 1000px) { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
@media (max-width: 768px) { | ||
grid-template-columns: 1fr; | ||
} | ||
} | ||
.grid-card { | ||
border-radius: 1rem; | ||
border: 2px solid #515151; | ||
background: #000; | ||
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); | ||
padding: 20px; | ||
text-align: left; | ||
font-size: 1.25rem; | ||
// aspect-ratio: 3/2; | ||
min-height: 300px; | ||
&:hover { | ||
border: 2px solid $secondary; | ||
|
||
} | ||
} | ||
.product-head { | ||
font-size: 1.5rem; | ||
font-weight: 500; | ||
color: $white; | ||
text-transform: uppercase; | ||
margin-bottom: 1.5rem; | ||
} | ||
.playground-section { | ||
&.playground-logo { | ||
background-image: url("/images/logos/black-semi-opaque.svg"), url("/images/logos/meshery-light-icon.svg"); | ||
background-repeat: no-repeat; | ||
background-position: center; | ||
background-size: 50%; | ||
} | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: top; | ||
text-align: left; | ||
align-content: space-between; | ||
} | ||
|
||
.catalog-section { | ||
&.catalog-logo { | ||
background-image: url("/images/logos/black-semi-opaque.svg"), url("/images/logos/catalog.svg"); | ||
background-repeat: no-repeat; | ||
background-position: center; | ||
background-size: 50%; | ||
} | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: top; | ||
text-align: left; | ||
align-content: space-between; | ||
} | ||
.handbook-section { | ||
display: flex; | ||
grid-column: span 2; | ||
background: linear-gradient(112deg, #000 34.88%, rgba(0, 110, 88, 0.82) 92.89%, #000 159.16%); | ||
flex-direction: row; | ||
align-items: start; | ||
|
||
@media (max-width: 768px) { | ||
flex-direction: column; | ||
grid-column: span 1; | ||
} | ||
} | ||
.handbook-image{ | ||
width: 150%; | ||
height: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
@media (max-width: 768px) { | ||
width: 100%; | ||
|
||
} | ||
img{ | ||
box-shadow: -8px 4px 25px 0px rgba(0, 211, 169, 0.50), 0px -8px 25px 0px rgba(0, 211, 169, 0.50); | ||
border-radius: 8px; | ||
width: 100%; | ||
} | ||
|
||
} | ||
.handbook-text{ | ||
display: flex; | ||
width: 90%; | ||
flex-direction: column; | ||
gap: 20px; | ||
@media (max-width: 768px) { | ||
width: 100%; | ||
} | ||
} | ||
|
||
.forum-section { | ||
grid-row: span 3; | ||
overflow: hidden; | ||
justify-content: baseline; | ||
align-content: baseline; | ||
justify-self: baseline; | ||
align-self: baseline; | ||
img { | ||
box-shadow: -8px 4px 25px 0px rgba(0, 211, 169, 0.50), 0px -8px 25px 0px rgba(0, 211, 169, 0.50); | ||
|
||
border-radius: 8px; | ||
width: 160%; | ||
min-height: 26rem; | ||
|
||
} | ||
@media (max-width: 1000px) { | ||
grid-column: span 2; | ||
} | ||
@media (max-width: 768px) { | ||
grid-column: span 1; | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.