Re-commit

This commit is contained in:
Thomas Smith 2022-10-19 15:04:51 -04:00
parent ba4f7bfe7e
commit ff553dd5b1
4 changed files with 16 additions and 13 deletions

View file

@ -33,7 +33,7 @@
</div>
<hr>
<section id="reveal" style="display:block;">
<section class="animated-25" id="reveal" style="display:none;">
<div class="container">
<div class="row">
<div class="col">
@ -45,6 +45,10 @@
<style>
#reveal{
transition: 0.2s linear;
}
@media only screen and (min-width: 768px) {
.one-liner{
@ -176,7 +180,15 @@
/* Alert the copied text
alert("Copied " + copyText.value + " to clipboard");*/
//Change button text to 'copied'
document.getElementById("copy-icon").innerHTML = "copied!";
// Reveal Auth text
if (document.getElementById("reveal").style.display = "none") {
document.getElementById("reveal").style.display = "block";
} else {
document.getElementById("reveal").style.display = "none";
}
}
</script>

View file

@ -347,7 +347,7 @@ mark{
@media only screen and (max-width: 576px) {
.hero-section{
padding: 4vw !important;
padding: 1vw 4vw !important;
}
.hero-container{

View file

@ -12,11 +12,6 @@
background-size: contain;
}
.products-hero h1{
position: relative;
z-index: 2;
}
.lead-container{
padding-left: 25vw;
padding-right: 25vw;
@ -61,11 +56,6 @@
background-size: contain;
}
.products-hero h1{
position: relative;
z-index: 2;
}
.lead-container{
padding-left: 25vw;
padding-right: 25vw;

View file

@ -58,7 +58,7 @@ li{
/* Extra-Large Screens*/
/*@media only screen and (min-width: 1200px) {*/
@media only screen and (min-width: 1200px) {
h1{
font-size: 11.5vw;
@ -99,6 +99,7 @@ li{
p{
font-size: 1.116vw;
}
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {