mirror of
https://github.com/ivabus/www
synced 2024-11-10 19:15:15 +03:00
Re-commit
This commit is contained in:
parent
ba4f7bfe7e
commit
ff553dd5b1
|
@ -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>
|
||||
|
|
|
@ -347,7 +347,7 @@ mark{
|
|||
@media only screen and (max-width: 576px) {
|
||||
|
||||
.hero-section{
|
||||
padding: 4vw !important;
|
||||
padding: 1vw 4vw !important;
|
||||
}
|
||||
|
||||
.hero-container{
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue