This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Switch mobile logo */ | |
@media only screen and (max-width: 980px) { | |
#logo { | |
content: url("/wp-content/uploads/2017/06/your-awesome-mobile-logo.png"); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
background-color: #ECF0F5; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
position: relative; | |
padding: 0.2em 1em; | |
border: 2px solid #BD6982 !important; | |
-webkit-border-radius: 3px; | |
-moz-border-radius: 3px; | |
border-radius: 3px; | |
background: transparent; | |
font-size: 16px; | |
font-weight: 600; | |
line-height: 1.7em !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
background-color: transparent; | |
margin-right: 10px; | |
display: table !important; | |
position: relative !important; | |
margin-left: auto !important; | |
margin-right: auto !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
border: none; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
@import url(https://fonts.googleapis.com/css?family=Khula:700); | |
.hidden { | |
opacity:0; | |
} | |
.console-container { | |
font-family:Khula; | |
font-size:4em; | |
text-align:center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
// function([string1, string2],target id,[color1,color2]) | |
consoleText(['Divi Notes.', 'Divi Tips and Tricks', 'Made with Love.'], 'text',['#BD6983','tomato','lightblue']); | |
function consoleText(words, id, colors) { | |
if (colors === undefined) colors = ['#fff']; | |
var visible = true; | |
var con = document.getElementById('console'); | |
var letterCount = 1; | |
var x = 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class='console-container'><span id='text'></span><div class='console-underscore' id='console'>_</div></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.slippery:hover { | |
background-position: bottom center!important; | |
transition: background-position 5s linear 0s; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
margin-left: auto!important; | |
margin-right: auto!important; | |
transition: background-position 1.5s ease-out 0.5s; | |
background-position: top center; | |
background-size: 100% auto!important; | |
height: 100%; | |
background-repeat: no-repeat; |