52 lines
799 B
CSS
52 lines
799 B
CSS
.txt-line-height-1 {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.float-right {
|
|
float: right;
|
|
}
|
|
|
|
.float-left {
|
|
float: left;
|
|
}
|
|
|
|
.txt-jaune {
|
|
color: #fcba03;
|
|
}
|
|
|
|
.div-inlinebck {
|
|
display: inline-block;
|
|
}
|
|
|
|
.div-witdh-30p {
|
|
max-width: 33%;
|
|
min-width: 33%;
|
|
}
|
|
|
|
.div-height-120px {
|
|
height: 120px;
|
|
}
|
|
|
|
.div-height-150px {
|
|
height: 150px;
|
|
}
|
|
|
|
.div-margin-top-10px {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.div-border-left {
|
|
border-left: 1px solid white;
|
|
}
|
|
|
|
.div-background-positive {
|
|
background: linear-gradient(to top, rgba(0,0,100,0), rgba(0,0,100,0.5));
|
|
}
|
|
|
|
.div-background-neutral {
|
|
background: linear-gradient(to top, rgba(180,100,0,0), rgba(180,100,0,0.5));
|
|
}
|
|
|
|
.div-background-negative {
|
|
background: linear-gradient(to top, rgba(100,0,0,0), rgba(100,0,0,0.5));
|
|
} |