Skip to content

Instantly share code, notes, and snippets.

@angeliquejw
angeliquejw / thousandsSep.js
Last active April 9, 2016 15:35
Add a thousands separator in Highcharts
Highcharts.setOptions({
lang: {
thousandsSep: ','
}
});
/*! Based on sanitize.css v3.0.0 | CC0 1.0 Public Domain | github.com/10up/sanitize.css */
html {
box-sizing: border-box;
-ms-overflow-style: -ms-autohiding-scrollbar; /* Edge 12+, IE 11- */
overflow-y: scroll; /* All browsers without overlaying scrollbars */
-webkit-text-size-adjust: 100%; /* iOS 8+ */
}
*, :before, :after {
box-sizing: inherit;
<iframe src="" frameborder="0" height="" width="100%"></iframe>
<div style="display:none!;font-size: 0px!important;max-height:0px!important;overflow:hidden!important;mso-hide:all!important;"></div>
#lives {
color:black;
content:'matter';
}
@angeliquejw
angeliquejw / dummy-test-content.html
Last active March 2, 2016 16:18
Useful dummy content for testing out styling of HTML elements
<h1>CSS Basic Elements</h1>
<p>The purpose of this HTML is to help determine what default settings are with CSS and to make sure that all possible HTML Elements are included in this HTML so as to not miss any possible Elements when designing a site.</p>
<hr />
<h1>Line length</h1>
<p>abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz</p>
<h1>Headings</h1>
<h2>Heading 2</h2>
<p>And then some paragraph text to follow. The purpose of this HTML is to help determine what default settings are with CSS and to make sure that all possible HTML Elements are included in this HTML so as to not miss any possible Elements when designing a site.</p>
@angeliquejw
angeliquejw / Sass-vs-Scss.scss
Last active September 25, 2015 02:01
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.3)
// ----
@import "compass";
header {
color: blue;
font-size: 20px;
@angeliquejw
angeliquejw / Arrows-Mixin.html
Last active September 24, 2015 04:27
Generated by SassMeister.com.
<div class="slider">
<div class="imgWrapper"></div>
<div class="arrow arrowPrev"></div>
<div class="arrow arrowNext"></div>
</div>
@angeliquejw
angeliquejw / Linear-Gradient-Mixin.html
Last active September 24, 2015 03:31
Generated by SassMeister.com.
<div>
</div>
@angeliquejw
angeliquejw / SassMeister-input.scss
Last active August 29, 2015 14:21
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
$base: #D4E744;
.rgba {
@for $i from 1 through 9 {
li:nth-child(#{$i}) {
background:rgba($base, 0.1 * $i);