Created
September 11, 2018 13:35
-
-
Save shaneonabike/4324e3a67ceb4db50fe5d1f59e97f64d to your computer and use it in GitHub Desktop.
Popup CSS
This file contains 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
/** | |
* Like Us Popup CSS | |
*/ | |
#likeus { | |
width:342px; | |
height:170px; | |
border: 1px solid #666; | |
background-color:#fff; | |
-webkit-box-shadow: 0 0 16px #666; | |
box-shadow: 0 0 16px #666; | |
position:absolute; | |
right:0; | |
z-index:150; | |
display:none; | |
} | |
#likeus-wrapper { | |
position:relative; | |
height:100%; | |
} | |
#likeus-close-wrapper { | |
position:absolute; | |
bottom:5px; | |
} | |
#likeus-hide { | |
display:none !important; | |
} | |
#likeus h2 { color:#b40353; } | |
#likeus-banner { | |
height:8px; | |
background-color:#b40353; | |
margin-bottom: 15px; | |
} | |
#likeus-inner { | |
margin-left:20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment