51 lines
711 B
Plaintext
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;
|
|
} |