-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Builder
committed
Feb 11, 2013
0 parents
commit b0ce94d
Showing
71 changed files
with
2,349 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
lib/*.ts | ||
.rvmrc | ||
tmp/ | ||
log/ | ||
*.swp | ||
.sass-cache | ||
.DS_Store | ||
config/default.vcl | ||
JENKINS | ||
BUILD_VERSION | ||
*~ | ||
project.gemspec | ||
assets/javascript/.remote/ | ||
assets/javascript/main.js | ||
assets/javascript/host_map.js | ||
*.css |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
simple-mobile (1.0.94) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## Basics | ||
This project works with the MoovSDK. | ||
|
||
See detailed documentation for the MoovSDK at http://console.moovweb.com | ||
|
||
## Domains | ||
Remember to put all domains you're going to hit in your etc/hosts | ||
or to run your server with the `-auto-hosts=true` option. | ||
|
||
127.0.0.1 mlocal.teamquest.com |
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.
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.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* Default JS */ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
- :output_file: main.js | ||
:input_directory: main | ||
:input_files: | ||
- host_map.js | ||
- http://d1topzp4nao5hp.cloudfront.net/uranium-upload/0.1.104/uranium-pretty.js | ||
- http://d1topzp4nao5hp.cloudfront.net/plutonium-upload/0.1.73/gsub.js | ||
- http://d1topzp4nao5hp.cloudfront.net/plutonium-upload/0.1.73/passthrough_ajax.js | ||
- http://d1topzp4nao5hp.cloudfront.net/plutonium-upload/0.1.68/auto_scroll.js | ||
|
||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// Delete me when ready |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "webkit.scss"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "../main.scss"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "webkit.scss"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "webkit.scss"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "../main.scss"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Site-wide styles go here | ||
|
||
@import "bourbon/_bourbon"; | ||
|
||
@import "_vertical_rhythmic"; | ||
|
||
html { | ||
height: 100%; | ||
overflow: auto !important; | ||
} | ||
|
||
body { | ||
-webkit-text-size-adjust: none; | ||
background: #fff; | ||
color: #333; | ||
font-family: "Helvetica Neue", Helvetica, Verdana; | ||
position: relative; | ||
min-height: 100%; | ||
} | ||
|
||
a { | ||
color: #369; | ||
text-decoration: none; | ||
word-wrap: break-word; | ||
} | ||
|
||
a, a:link { | ||
-webkit-tap-highlight-color: rgba(225, 244, 204, 0.5); | ||
} | ||
|
||
img { | ||
max-width: 100%; | ||
} | ||
|
||
input[type="number"]::-webkit-outer-spin-button { | ||
display: none; | ||
} | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// http://meyerweb.com/eric/tools/css/reset/ | ||
// v2.0 | 20110126 | ||
// License: none (public domain) | ||
|
||
|
||
html, body, div, span, applet, object, iframe, | ||
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | ||
a, abbr, acronym, address, big, cite, code, | ||
del, dfn, em, img, ins, kbd, q, s, samp, | ||
small, strike, strong, sub, sup, tt, var, | ||
b, u, i, center, | ||
dl, dt, dd, ol, ul, li, | ||
fieldset, form, label, legend, | ||
table, caption, tbody, tfoot, thead, tr, th, td, | ||
article, aside, canvas, details, embed, | ||
figure, figcaption, footer, header, hgroup, | ||
menu, nav, output, ruby, section, summary, | ||
time, mark, audio, video { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font-size: 100%; | ||
font: inherit; | ||
vertical-align: baseline; | ||
} | ||
/* HTML5 display-role reset for older browsers */ | ||
article, aside, details, figcaption, figure, | ||
footer, header, hgroup, menu, nav, section { | ||
display: block; | ||
} | ||
body { | ||
line-height: 1; | ||
} | ||
ol, ul { | ||
list-style: none; | ||
} | ||
blockquote, q { | ||
quotes: none; | ||
} | ||
blockquote:before, blockquote:after, | ||
q:before, q:after { | ||
content: ''; | ||
content: none; | ||
} | ||
table { | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* ####################################### | ||
####### URANIUM WIDGET STYLING ######## | ||
####################################### */ | ||
|
||
// Togglers (accordions) | ||
[data-ur-toggler-component="content"] { | ||
display: none; | ||
&:not([data-ur-state]) { | ||
display: none; | ||
} | ||
&[data-ur-state="enabled"] { | ||
display: block; | ||
} | ||
} | ||
|
||
// Tabs | ||
[data-ur-tabs-component="content"] { | ||
display: none; | ||
&:not([data-ur-state]) { | ||
display: none; | ||
} | ||
&[data-ur-state="enabled"] { | ||
display: block; | ||
} | ||
} | ||
|
||
// Simple Carousel | ||
[data-ur-state="hide"] { | ||
display: none !important; | ||
} | ||
|
||
// Carousel | ||
div[data-ur-carousel-component='view_container'] { | ||
width:100%; | ||
overflow-x: hidden; | ||
} | ||
div[data-ur-carousel-component="scroll_container"] { | ||
display:block; | ||
clear:both; | ||
> * { | ||
display:inline-block; | ||
float:left; | ||
} | ||
} | ||
a[data-ur-carousel-component="item"] { | ||
img { | ||
-webkit-user-drag: none; // needed to work on desktop | ||
} | ||
} | ||
[data-ur-carousel-component="dots"] { | ||
text-align:center; | ||
margin-bottom:10px; | ||
} | ||
[data-ur-carousel-component="dot"] { | ||
@include border-radius(7px); | ||
background: black; | ||
display: inline-block; | ||
margin: 0 1px; | ||
opacity: 0.8; | ||
width: 10px; | ||
height: 10px; | ||
&[data-ur-state="inactive"] { | ||
opacity: 0.3; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
// Vertical Rhythm | ||
$base-font-size: 13px; | ||
$base-line-height: 24px; | ||
@include establish-baseline(); |
Oops, something went wrong.