This commit is contained in:
armansansd
2022-04-27 13:33:52 +02:00
parent fded5af68d
commit 7da0aec99a
4 changed files with 52 additions and 18 deletions

View File

@@ -505,7 +505,7 @@
position: relative;
width: 100%;
overflow: hidden;
margin-top: -.5rem;
margin-top: .5rem;
z-index: -1;
a{
position: absolute;
@@ -532,13 +532,13 @@
grid-column: 1;
grid-row: 1;
margin-bottom: -.5rem;
// margin-bottom: -.5rem;
color: #fff;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-columns: 1fr;
grid-gap: 10px;
z-index: 100;
position: relative;
position: absolute;
div{
padding: .02rem .3rem;
}
@@ -622,16 +622,49 @@
content: "ville";
}
#node\:field_equipes{
border-bottom: 3px dotted gray;
h2{
font-family: "trueno" !important;
font-size: 1rem;
font-size: $font-big;
font-weight: 600;
text-transform: none;
text-transform: initial;
cursor: pointer;
display: grid;
grid-template-columns: 95% 5%;
align-content: center;
margin: 1rem 0;
}
h2:after{
content: '';
-webkit-transition: all 250ms ease;
-moz-transition: all 250ms ease;
-o-transition: all 250ms ease;
transition: all 250ms ease;
align-self: center;
justify-self: center;
}
// h2:after{
// transform: rotate(180deg);
// -webkit-transition: all 250ms ease;
// -moz-transition: all 250ms ease;
// -o-transition: all 250ms ease;
// transition: all 250ms ease;
// }
.rotate:after{
transform: rotate(180deg);
-webkit-transition: all 250ms ease;
-moz-transition: all 250ms ease;
-o-transition: all 250ms ease;
transition: all 250ms ease;
}
.field_type_equipe{
font-weight: 500;
}
.field_equipes{
display: none;
}
}
}