A Pen by Janis Skarnelis on CodePen.
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[data-percentage] { | |
font-family: sans-serif; | |
background: teal; | |
padding: 10px; | |
font-weight: bold; | |
color: #023636; | |
text-shadow: 0 1px 0 #58BBBB; | |
font-size: 20px; | |
width: 100px; | |
margin: 4px auto; |
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
<?php | |
/** | |
* Class Container | |
*/ | |
class Container | |
{ | |
/** | |
* @var array | |
*/ |
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
/* | |
* Select2 v3.4.6 styles customization for Flat UI | |
*/ | |
/*----------------------------------------------- Main select element ------------------------------------------------*/ | |
.select2-container .select2-choice { | |
height: 41px; /* Jobsy form controls have 37px total height */ | |
border: 2px solid #bdc3c7; | |
border-radius: 6px; | |
outline: none; | |
font: 15px/38px "Lato", Liberation Sans, Arial, sans-serif; |
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
<?php | |
function urlsafe_b64encode($string) { | |
return str_replace(array('+','/','='),array('-','_',''), base64_encode($string)); | |
} | |
$timestamp=time(); | |
$ampBaseUrl = "https://www-domain-com.cdn.ampproject.org"; | |
$signatureUrl = '/update-cache/c/s/www.domain.com/amp/page-url?amp_action=flush&_ts='.$timestamp; |
A Pen by Brenden Palmer on CodePen.