41 lines
764 B
CSS
41 lines
764 B
CSS
.backBtn-container {
|
|
position: absolute;
|
|
top: 85px;
|
|
left: 70px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
background-color: #fff;
|
|
border-style: none;
|
|
border-radius: 30px;
|
|
padding-right: 10px;
|
|
padding-left: 10px;
|
|
width: 200px;
|
|
}
|
|
|
|
.backBtn-container a {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.backArrow img {
|
|
transform: rotate(180deg);
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.backTxt p {
|
|
color: #111;
|
|
font-family: 'Arial Narrow Bold', sans-serif;
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
margin: 10px;
|
|
}
|
|
|
|
@media screen and (max-width:1023px) {
|
|
.backBtn-container {
|
|
visibility: hidden;
|
|
}
|
|
} |