Following @ilicmarko's comment, here's my spacing.scss
file…
(see spacing.scss)
…which generates the following spacing utility classes…
(see spacing.css)
<ion-view view-title="Chats"> | |
<ion-content> | |
<ion-list> | |
<ion-item class="item-remove-animate item-avatar item-icon-right" ng-repeat="chat in chats" type="item-text-wrap" href="#/tab/chats/{{chat.id}}"> | |
<img ng-src="{{chat.face}}"> | |
<h2>{{chat.name}}</h2> | |
<p>{{chat.lastText}}</p> | |
<i class="icon ion-chevron-right icon-accessory"></i> | |
<ion-option-button class="button-assertive" ng-click="remove(chat)"> |
less: { | |
compile: { | |
options: { | |
paths: ["bower_components/bootstrap/less"] | |
}, | |
files: { | |
"app/styles/style.css": "app/styles/style.less" | |
} | |
} | |
} |
<nav class="navbar navbar-default"> | |
<div class="container-fluid"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#contenido-navbar"> | |
<span class="sr-only">Toggle navigation</span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
<a class="navbar-brand" href="#"> |
var redis = require("redis"), | |
client = redis.createClient(); | |
// if you'd like to select database 3, instead of 0 (default), call | |
// client.select(3, function() { /* ... */ }); | |
client.on("error", function (err) { | |
console.log("Error " + err); | |
}); |
function getBTCPrice() { | |
var response = UrlFetchApp.fetch("https://www.bitstamp.net/api/ticker"); | |
var last = JSON.parse(response.getContentText()).last; | |
Logger.log(last); | |
return last; | |
} |
Following @ilicmarko's comment, here's my spacing.scss
file…
(see spacing.scss)
…which generates the following spacing utility classes…
(see spacing.css)