This repository has been archived on 2026-06-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
matheoguilbert.fr_v1/css/backBtn.css
T
2023-10-03 09:22:32 +02:00

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;
}
}