mmsc_app/app/views/public/shared/_render_block.html.haml
Nicolas Bally a6aa1f6074 Initial
2020-05-25 11:40:11 +02:00

51 lines
711 B
Plaintext

:scss
$orange: #e1852a;
$vert:#047979;
.btn{
display:inline-block;
color : #ffffff;
font-size : 14px;
font-weight : medium;
background-color : #027878;
box-shadow : 7px 7px 5px rgba(0,0,0,0.4);
border:0;
padding: 8px 12px;
margin:0 5px;
cursor:pointer;
&:hover{
color:#027878;
background:white;
}
&.orange{
background:$orange;
&:hover{
color:$vert;
background:white;
}
}
}
.center_block{
text-align:center;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-justify {
text-align: justify;
}