54 lines
940 B
SCSS
54 lines
940 B
SCSS
.tracker-auth {
|
|
&__content {
|
|
font-family: "LabGrotesque", sans-serif;
|
|
background-color: #f1f1f1;
|
|
color: #000000;
|
|
padding: 50px 0 0;
|
|
min-height: 100vh;
|
|
|
|
@media (max-width: 1375px) {
|
|
padding-top: 100px;
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
background-color: white;
|
|
}
|
|
|
|
.container {
|
|
padding-bottom: 30px;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
font-size: 30px;
|
|
font-weight: 500;
|
|
margin-bottom: 46px;
|
|
color: #000000;
|
|
span {
|
|
color: #52B709;
|
|
position: relative;
|
|
img {
|
|
position: absolute;
|
|
bottom: -15px;
|
|
right: 10px;
|
|
max-width: 300px;
|
|
|
|
@media (max-width: 600px) {
|
|
max-width: 257px;
|
|
right: 0;
|
|
}
|
|
|
|
@media (max-width: 483px) {
|
|
max-width: 160px;
|
|
left: -175px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
font-size: 24px;
|
|
margin-bottom: 25px;
|
|
}
|
|
}
|
|
}
|