Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: TT-174 css
  • Loading branch information
mmaquina committed Sep 30, 2022
commit 27e01819a6e3ce8373d2846f5f59f4dce4988d0e
64 changes: 64 additions & 0 deletions src/app/modules/v2-redirect/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
border: none;
}

.btn-primary:hover {
background-color: #bf3816;
}

h2 {
font-weight: 600;
color: #5B4F62;
Expand Down Expand Up @@ -65,6 +69,9 @@ h3 {


@media screen and (max-width: 1199px) {
body{
text-align: center;
}
h1 {
color:#831C86;
}
Expand All @@ -73,6 +80,7 @@ h3 {
display: grid;
grid-template-columns: 1fr;
position: relative;
width:auto;
}

.text{
Expand All @@ -96,4 +104,60 @@ h3 {
.decoration {
display: none;
}
}


@media screen and (max-width: 430px) {
.btn-primary {
font-size:small;

}
body{
text-align: center;
}
h1 {
font-size: 2rem;
color:#831C86;
}
h2 {
font-size: 1rem;
}
.grid {
display: grid;
grid-template-columns: 1fr;
position: relative;
width:auto;
}

.text{
padding-top: 2rem;
padding-right: 0px;
text-align: center;

}

.redirection {
padding-top: 0px;
padding-right: 0px;
margin-bottom: 30px;
text-align: center;
}

#quote {
display: none;
}

.decoration {
display: none;
}
#logo {
padding-right: auto;
padding-left: auto;
padding-top: 20px;
position:absolute;
max-width: 80%;
left: 0;
top: 0;
z-index: 10;
}
}