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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.cards.notification"> | |
<uses-sdk | |
android:minSdkVersion="17" | |
android:targetSdkVersion="17" /> | |
<application | |
android:allowBackup="true" |
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
// Flexbox LESS mixins | |
// The spec: http://www.w3.org/TR/css3-flexbox | |
// Complete Guide: https://css-tricks.com/snippets/css/a-guide-to-flexbox/ | |
// Flexbox display | |
// values: flex | inline-flex | |
.flex-display(@display: flex) { | |
display: ~"-webkit-@{display}"; | |
display: ~"-moz-@{display}"; |
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
/* PocketGrid 1.1.0 | |
* Copyright 2013 Arnaud Leray | |
* http://arnaudleray.github.io/pocketgrid/ | |
* MIT License | |
*/ | |
// LESS Version by adhocgrafx | |
.block-group { | |
// box-sizing > border-box mixin |
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
/* Material design color palettes. | |
** @see http://www.google.com/design/spec/style/color.html */ | |
/* original: https://github.com/google/web-starter-kit/blob/master/app/styles/components/_palette.scss | |
** adapted for usage with less */ | |
/* ========== Blacks ========== */ | |
@colorBlack: argb(rgba(0,0,0, 1)); |