register-verification-completed.html - Improved responsiveness in mobile screens

This commit is contained in:
Matthew Patrick 2021-09-14 20:04:21 +07:00
parent 1daaf8acb9
commit 83ba1626f1

View file

@ -44,6 +44,62 @@
width: 70%; width: 70%;
height: 70%; height: 70%;
} }
@media screen and (max-width: 766px) {
.card h2 {
font-size: 7vw;
}
.card h6 {
font-size: 5vw;
}
.card a {
font-size: 5vw;
}
}
@media screen and (min-width: 767px) {
.card h2 {
font-size: 4vw;
}
.card h6 {
font-size: 2vw;
}
.card a {
font-size: 2.5vw;
}
}
@media screen and (min-width: 993px) {
.card h2 {
font-size: 3vw;
}
.card h6 {
font-size: 1.3vw;
}
.card a {
font-size: 1.5vw;
}
}
@media screen and (min-width: 1400px) {
.card h2 {
font-size: 4vw;
}
.card h6 {
font-size: 2vw;
}
.card a {
font-size: 3vw;
}
}
</style> </style>
</head> </head>
<body> <body>
@ -59,21 +115,29 @@
<br> <br>
<div class="card w-50">
<div class="card-header" style="color: white;"> <div class="container">
<h2 style="font-size:3vw;">Verification Completed !!</h2> <div class="row">
</div> <div class="col">
<lottie-player src="https://assets10.lottiefiles.com/private_files/lf30_hlzxxlfs.json" class="icon" <div class="card col-md-6 col-lg-6 col-xl-8">
background="transparent" <div class="card-header" style="color: white;">
speed="1" loop autoplay></lottie-player> <h2>Verification Completed !!</h2>
<div class="card-body"> </div>
<h6 class="card-text" style="color: #dedede;font-size:1.3vw">Your Email Has Been Verified !! Please Sign in <lottie-player src="https://assets10.lottiefiles.com/private_files/lf30_hlzxxlfs.json" class="icon"
Using the button background="transparent"
below..</h6> speed="1" loop autoplay></lottie-player>
<br style="display: block;content: ' ';margin: 1vw 0;line-height: 1vw;"> <div class="card-body">
<a href="login.html" style="font-size: 1.5vw" class="btn btn-primary w-50">Sign in</a> <h6 class="card-text" style="color: #dedede;">Your Email Has Been Verified !! Please Sign in
Using the button
below..</h6>
<br style="display: block;content: ' ';margin: 1vw 0;line-height: 1vw;">
<a href="login.html" class="btn btn-primary">Sign in</a>
</div>
</div>
</div>
</div> </div>
</div> </div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script> crossorigin="anonymous"></script>