03/10/23 firstcommit

This commit is contained in:
2023-10-03 09:22:32 +02:00
commit ae1cf1315c
60 changed files with 6143 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
.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;
}
}