création du nouveau block links : big-links-list
This commit is contained in:
parent
54bd4fbc87
commit
8776c089e4
5 changed files with 66 additions and 1 deletions
|
|
@ -73,12 +73,39 @@
|
|||
position: absolute;
|
||||
inset: 0;
|
||||
}
|
||||
[data-template="sectioned"] .links-list li a::before {
|
||||
[data-template="sectioned"] .links-list li a::before
|
||||
{
|
||||
content: "→";
|
||||
display: inline-block;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
/*big links list*/
|
||||
[data-template="sectioned"] .big-links-list li {
|
||||
position: relative;
|
||||
display: flex;
|
||||
border-bottom: 1px solid #000;
|
||||
font-size: var(--font-size-h3);
|
||||
margin-bottom: 0.7rem;
|
||||
padding-bottom: 0.4rem;
|
||||
}
|
||||
[data-template="sectioned"] .big-links-list li .li_arrow{
|
||||
transition: opacity 0.3s, width 0.4s;
|
||||
opacity: 0;
|
||||
width: 0;
|
||||
}
|
||||
[data-template="sectioned"] .big-links-list li:hover .li_arrow{
|
||||
opacity: 1;
|
||||
width: 2.5rem;
|
||||
}
|
||||
|
||||
[data-template="sectioned"] .big-links-list li a::before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
}
|
||||
|
||||
|
||||
.section__row.fixed-img-height img {
|
||||
max-height: var(--height);
|
||||
object-fit: contain;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue