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

View file

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

View file

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

View file

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