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 name="ToolbarTheme" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | |
<!-- android:textColorPrimary is the color of the title text in the Toolbar --> | |
<item name="android:textColorPrimary">@android:color/holo_blue_light</item> | |
<!-- actionMenuTextColor is the color of the text of action (menu) items --> | |
<item name="actionMenuTextColor">@android:color/holo_green_light</item> | |
<!-- Tints the input fields like checkboxes and text fields --> | |
<item name="colorAccent">@color/cursorAccent</item> | |
<!-- Applies to views in their normal state. --> | |
<item name="colorControlNormal">@color/controlNormal</item> | |
<!-- Applies to views in their activated state (i.e checked or switches) --> |
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
.alligator-turtle { | |
object-fit: cover|scale-down; | |
width: 300px; | |
height: 337px; | |
} |
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
var i = { | |
424436: 'akbars', | |
424440: 'akbars', | |
424438: 'akbars', | |
424437: 'akbars', | |
424439: 'akbars', | |
677088: 'akbars', | |
410243: 'alfabank', | |
410244: 'alfabank', | |
410245: 'alfabank', |
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
.stripe-shadow { | |
box-shadow: 0 50px 100px rgba(50,50,93,.1), 0 15px 35px rgba(50,50,93,.15), 0 5px 15px rgba(0,0,0,.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
.great-shadow { | |
box-shadow: 0 64px 64px 0 rgba(0,0,0,.1), | |
0 32px 32px 0 rgba(0,0,0,.1), | |
0 16px 16px 0 rgba(0,0,0,.1), | |
0 8px 8px 0 rgba(0,0,0,.1), | |
0 4px 4px 0 rgba(0,0,0,.1), | |
0 2px 2px 0 rgba(0,0,0,.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
<?php | |
/** | |
* fetch_url_contents - a simple js to php proxy function to get cross domain content. | |
* | |
* @author Artur Heinze | |
* @copyright (c) since 2016 Artur Heinze | |
* @license MIT - http://opensource.org/licenses/MIT | |
* @url https://github.com/aheinze/fetch_url_contents | |
*/ |
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
(function(self) { | |
'use strict'; | |
if (self.fetch) { | |
return | |
} | |
var support = { | |
searchParams: 'URLSearchParams' in self, | |
iterable: 'Symbol' in self && 'iterator' in Symbol, |
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
.shadow-sm-flat { | |
box-shadow: 0 4px 8px 0 rgba(150,150,150,.2); | |
} |
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
.shadow-xlarge-bottom { | |
box-shadow: 0 64px 64px 0 rgba(0,0,0,.05), | |
0 32px 32px 0 rgba(0,0,0,.05), | |
0 16px 16px 0 rgba(0,0,0,.05), | |
0 8px 8px 0 rgba(0,0,0,.05), | |
0 4px 4px 0 rgba(0,0,0,.05), | |
0 2px 2px 0 rgba(0,0,0,.05); | |
} |
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
// Determine which animationend event is supported | |
function animationEndSelect() { | |
var t; | |
var el = document.createElement('fake'); | |
var transitions = { | |
'transition':'animationend', | |
'OTransition':'oAnimationEnd', | |
'MozTransition':'animationend', | |
'WebkitTransition':'webkitAnimationEnd' | |
} |