This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-stack: Helvetica, sans-serif; | $font-stack: Helvetica, sans-serif; | |
@primary-color: #333; | $primary-color: #333; | |
body { body { | |
font-family: @font-stack; | font-family: $font-stack; | |
color: @primary-color; | color: $primary-color; | |
} } | |
.transform(@property) { | @mixin transform($property) { | |
-webkit-transform: @property; | -webkit-transform: $property; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,2c1,2 | |
< @font-stack: Helvetica, sans-serif; | |
< @primary-color: #333; | |
--- | |
> $font-stack: Helvetica, sans-serif; | |
> $primary-color: #333; | |
5,6c5,6 | |
< font-family: @font-stack; | |
< color: @primary-color; | |
--- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='UTF-8'> | |
<title>GSA :: Technology Transformation Service</title> | |
<style> | |
body { background-color: #1c5295; } | |
svg { position: absolute; top:0; bottom: 0; left: 0; right: 0; margin: auto; } | |
rect { fill: #fff; opacity: 0; } | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var width = 500, | |
height = 500; | |
var projection = d3.geo.albersUsa() | |
.scale(1280) | |
.translate([width / 2, height / 2]); | |
var path = d3.geo.path() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
var margin = { | |
top: 20, | |
right: 40, | |
bottom: 50, | |
left: 40 | |
}, | |
width = 660 - margin.left - margin.right, | |
height = 340 - margin.top - margin.bottom; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
// initialize goal diff slider | |
var g_diff_slider = $('#g-diff-input'); | |
g_diff_slider.noUiSlider({ | |
start: 0, | |
step: 1, | |
range: { | |
min: -3, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder