Skip to content

Instantly share code, notes, and snippets.

View gorand's full-sized avatar

Gordeev Andrey gorand

View GitHub Profile
@gorand
gorand / 0_reuse_code.js
Created January 29, 2016 07:41
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@gorand
gorand / scifi.html
Created December 22, 2015 15:39 — forked from anonymous/scifi.html
Задание для https://goo.gl/WGrXbu
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Sci-Fi</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://fb.me/react-0.14.3.js"></script>
<script src="https://fb.me/react-dom-0.14.3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.min.js"></script>
</head>
@gorand
gorand / gist:8f0cfe7483b4dfbaa69f
Last active August 29, 2015 14:26
mixin clearfix
@define-mixin clearfix() {
&:before,
&:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
}
@gorand
gorand / gist:0938942792641c481009
Created December 12, 2014 15:34
variables custom bootstrap
// Grays
@gray-darker: #222222;
@gray-dark: #333333;
@gray: #555555;
@gray-light: #999999;
@gray-lighter: #eeeeee;