I used LESS to create this CSS glass shelf for a new website I just finished designing and developing - http://www.meridianapps.com.
A Pen by o'holloran on CodePen.
I used LESS to create this CSS glass shelf for a new website I just finished designing and developing - http://www.meridianapps.com.
A Pen by o'holloran on CodePen.
#encoding: utf-8 | |
require 'tire' | |
require 'json' | |
require 'active_support/core_ext/object/to_query' | |
require 'active_support/core_ext/object/to_param' | |
conf = { | |
settings: { | |
number_of_shards: 1, | |
number_of_replicas: 0, |
class Growl | |
attr_accessor :report, :status | |
def initialize(report, opts = {}) | |
@report, options = report, create_options(opts) | |
message = create_message | |
opts = options.inject([]) do |arr, item| | |
key, value = item.first, item.last |