Skip to content

Instantly share code, notes, and snippets.

View Nevraeka's full-sized avatar

Erik Isaksen Nevraeka

View GitHub Profile
:root {
--translate-item: calc(50% - 20px);
}
.x-translate {
box-sizing: content-box;
padding: 8px;
width: 24px;
height: 24px;
background-color: rgba(0,0,0, .8);
@Nevraeka
Nevraeka / test-json.json
Last active September 15, 2017 18:29
test
{
"foo": "Hello Template",
"repeatCount": 5
}
@Nevraeka
Nevraeka / flexbox.scss
Created September 11, 2017 15:15
Flexbox example
@mixin prefix($property, $value, $prefixes: ()) {
@each $prefix in $prefixes {
#{"--" + $prefix + "-" + $property}: #{$value};
}
#{$property}: $value;
}
@mixin flexbox {
display: -webkit-box;
display: -moz-box;
When you load css bundle asyncronously this can happen:
>> FYI- bundling assets is a separate issue from CSS core features
1) it load:
.class-3 { color: green; }
<div class="class-3">
2) it load
.class-1 { color: red; }
.class-2 { color: blue; }
@Nevraeka
Nevraeka / gist:3baad1bacd2393f0e3b0
Last active August 29, 2015 14:13
A curated list of Web Component Podcasts, Screencasts, & Interviews with Web Component community members
@Nevraeka
Nevraeka / JaFDK.markdown
Created September 3, 2014 15:47
A Pen by Erik Isaksen.
@Nevraeka
Nevraeka / web-platform-module.js
Created February 3, 2014 20:45
Angular Web Component Integration - Psuedo Code Concept
angular.module('web-platform', ["$ComponentSvc","$PolyfillSvc"]).component('ngw-picture',
["$components", function($components) {
return {
scope: {},
link: function($scope, $customElement, $attrs) {
var srcSets = $customElement.find('ngw-src-set');
// checks name for syntax - returns error if syntax is incorrect
// uses name to generate
@Nevraeka
Nevraeka / gist:8695535
Created January 29, 2014 19:47
Sample Gruntfile for prototyping
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
concat: {
dest: {
files: {
'public/js/p3c.js': [
'app/assets/js/*.js',
'app/assets/js/services/*.js',
'app/assets/js/controllers/*.js',
@Nevraeka
Nevraeka / Polymer <x-picture>
Created January 16, 2014 19:02
Composed version of Responsive Images Polymer implementation of the HTML <picture> spec
<polymer-element name="x-picture" attributes="src srcset title alt currentSrc media">
<template>
<style>
x-picture {
text-align: center;
object-fit: contain;
object-position: center;
}