Skip to content

Instantly share code, notes, and snippets.

View frebro's full-sized avatar
👾
Multinerd

Fredrik Broman frebro

👾
Multinerd
View GitHub Profile
@frebro
frebro / friends.html
Last active April 19, 2018 21:46
KAN Grids
<!doctype html>
<html lang="sv">
<head>
<meta charset="utf-8">
<title>KAN Grid: FRIENDS</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900" rel="stylesheet">
<style type="text/css">
body {
margin: 0;
font-family: 'Source Sans Pro', sans-serif;
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@frebro
frebro / README.md
Created December 20, 2016 14:00
How to export imported object in ES6
@frebro
frebro / style.css
Last active August 29, 2015 14:22
Different colors for input text and cursor on WebKit
@media screen and (-webkit-min-device-pixel-ratio: 0)
input[type='text'] {
color: salmon;
text-shadow: 0 0 0 teal;
-webkit-text-fill-color: transparent;
}
}