-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/docs/internal-page-anchors' into…
… docs/internal-page-anchors
- Loading branch information
Showing
37 changed files
with
2,596 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
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,15 @@ | ||
.card { | ||
display: flex; | ||
width: 100%; | ||
height: 100%; | ||
flex-direction: column; | ||
background: #fff; | ||
box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.3); | ||
|
||
&-image { | ||
flex: 0 0 auto; | ||
} | ||
&-content { | ||
flex: 1 1 auto; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
.hide { | ||
@media @xs { | ||
&-xs { | ||
display: none; | ||
display: none !important; | ||
} | ||
} | ||
} | ||
|
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,76 @@ | ||
@import (reference) '../common/variables.less'; | ||
|
||
.marquee-carousel [esl-carousel-container] { | ||
esl-carousel { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.img-container { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
button.arrow-prev { | ||
left: 0; | ||
&::before { | ||
background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' fill='%23fff'%3E%3Cpath d='M31 40 16 25l15-15 2 2-13 13 13 13z'/%3E%3C/svg%3E"); | ||
} | ||
} | ||
button.arrow-next { | ||
right: 0; | ||
&::before { | ||
background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' fill='%23fff'%3E%3Cpath d='M31 40 16 25l15-15 2 2-13 13 13 13z'/%3E%3C/svg%3E"); | ||
} | ||
} | ||
button.arrow-prev::before, | ||
button.arrow-next::before { | ||
width: 60px; | ||
height: 60px; | ||
} | ||
.carousel-dots-wrapper { | ||
position: absolute; | ||
bottom: 50px; | ||
left: 50%; | ||
margin-right: -50%; | ||
transform: translate(-50%, 0%); | ||
@media @lg-xl { | ||
display: none; | ||
} | ||
} | ||
|
||
&.main-carousel { | ||
div[data-slides-area] { | ||
min-height: 500px; | ||
gap: 0; | ||
} | ||
esl-carousel-slide { | ||
padding: 0; | ||
} | ||
button.arrow-prev, | ||
button.arrow-next { | ||
@media @lg-xl { | ||
display: none; | ||
} | ||
} | ||
} | ||
|
||
&.marquee-nav-carousel { | ||
padding: 0 60px; | ||
esl-carousel-slide { | ||
margin: 10px 0; | ||
} | ||
&::before { | ||
position: absolute; | ||
content: ''; | ||
background: black; | ||
height: 100%; | ||
width: 100%; | ||
top: 0; | ||
left: 0; | ||
overflow: hidden; | ||
} | ||
@media @xs-md { | ||
display: none; | ||
} | ||
} | ||
} |
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
Oops, something went wrong.