View LESS_Convert-PX-to-REM.txt
For the project I was working on, rather than having one base font size, we have two based on a desktop and mobile viewport. | |
@mobile-base-font: 16; | |
@desktop-base-font: 18; | |
html { | |
font-size: (@mobile-base-font*1px); /* rem unit for mobile and tablet */ | |
@media @desktop { | |
font-size: (@desktop-base-font*1px); /* rem unit for laptop and desktop */ | |
} |
View apruve-highcharts.scss
/** | |
* @license Highcharts | |
* | |
* (c) 2009-2016 Torstein Honsi | |
* | |
* License: www.highcharts.com/license | |
*/ | |
// Colors for data series and points. | |
$colors: #f00 #434348 #90ed7d #f7a35c #8085e9 #f15c80 #e4d354 #2b908f #f45b5b #91e8e1 !default; |
View 0_reuse_code.js
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
View ccoyier-bootstrap-blocked-table.css
.table { | |
font-size: 16px; | |
line-height: 22px; | |
color: #53626f; | |
display: block; | |
position: relative; | |
} | |
.table thead { | |
display: block; | |
float: left; |
View dbushnell-bootstrap-table.css
.table { | |
font-size: 16px; | |
line-height: 22px; | |
color: #53626f; | |
display: block; | |
position: relative; | |
} | |
.table thead { | |
display: block; | |
float: left; |