generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
basic styling for specification pages
- Loading branch information
1 parent
292a044
commit 1aff057
Showing
6 changed files
with
64 additions
and
3 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,27 @@ | ||
.features { | ||
margin: 50px 0; | ||
} | ||
|
||
/* lines */ | ||
.features > div { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
/* rows / cells */ | ||
.features > div > div { | ||
width: 100%; | ||
} | ||
|
||
@media (min-width: 600px) { | ||
.features > div { | ||
flex-direction: row; | ||
column-gap: 20px; | ||
} | ||
|
||
.features > div > div:first-child { | ||
font-weight: bold; | ||
flex-basis: 300px; | ||
text-align: end; | ||
} | ||
} |
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,3 @@ | ||
export default async function decorate(block) { | ||
// NOP | ||
} |
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,27 @@ | ||
.specifications { | ||
margin: 50px 0; | ||
} | ||
|
||
/* lines */ | ||
.specifications > div { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
/* rows / cells */ | ||
.specifications > div > div { | ||
width: 100%; | ||
} | ||
|
||
@media (min-width: 600px) { | ||
.specifications > div { | ||
flex-direction: row; | ||
column-gap: 20px; | ||
} | ||
|
||
.specifications > div > div:first-child { | ||
font-weight: bold; | ||
flex-basis: 300px; | ||
text-align: end; | ||
} | ||
} |
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,3 @@ | ||
export default async function decorate(block) { | ||
// NOP | ||
} |
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