File size: 980 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
.item-page-footer {
&__container {
display: flex;
flex-direction: row;
margin-top: 12px;
@media screen and (max-width: 800px) {
justify-content: center;
}
}
&__btn-container {
margin-top: 25px;
@media screen and (max-width: 800px) {
display: flex;
justify-content: space-around;
}
}
&__btn {
border: none;
border-radius: 2px;
font-size: 0.9rem;
padding: 9px 11px;
background-color: rgba(51, 51, 51, 0.4);
border: none;
font-weight: 400;
margin-right: 30px;
text-decoration: none;
text-transform: capitalize;
transition: all 0.3s;
color: white;
width: 150px;
cursor: pointer;
&:hover {
background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 600px) {
margin: unset;
background-color: rgba(51, 51, 51, 0.7);
}
}
&__icon {
margin-right: 4px;
}
}
|