forked from unl/wdntemplates
-
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
Showing
29 changed files
with
539 additions
and
72 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
all: | ||
lessc wdn/templates_4.0/less/all.less css/all.min.css --yui-compress | ||
#uglifyjs www/js/lib/handlebars-1.0.0-rc3.js www/js/main.js -o www/js/main.min.js -c -m | ||
lessc wdn/templates_4.0/less/all.less wdn/templates_4.0/css/all.css --yui-compress --line-numbers=comments |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,37 @@ | ||
{ | ||
"name": "", | ||
"css_prefix_text": "wdn-icon-", | ||
"css_use_suffix": false, | ||
"glyphs": [ | ||
{ | ||
"uid": "513ac180ff85bd275f2b736720cbbf5e", | ||
"css": "home", | ||
"code": 8962, | ||
"src": "entypo" | ||
}, | ||
{ | ||
"uid": "37f6cfbb4062ed0d01b351ec35c334ff", | ||
"css": "right-open-mini", | ||
"code": 9658, | ||
"src": "entypo" | ||
}, | ||
{ | ||
"uid": "9dd9e835aebe1060ba7190ad2b2ed951", | ||
"css": "search", | ||
"code": 128269, | ||
"src": "fontawesome" | ||
}, | ||
{ | ||
"uid": "559647a6f430b3aeadbecd67194451dd", | ||
"css": "menu", | ||
"code": 61641, | ||
"src": "fontawesome" | ||
}, | ||
{ | ||
"uid": "5bb103cd29de77e0e06a52638527b575", | ||
"css": "wrench", | ||
"code": 128295, | ||
"src": "fontawesome" | ||
} | ||
] | ||
} |
Binary file not shown.
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.
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 @@ | ||
Font icons used in are from [Fontello](http://fontello.com/). To add more more icons to the font, use the `config.json` as a starter. |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<!-- Debug.css has all the media queries built in, we don't need a second load --> | ||
<link rel="stylesheet" type="text/css" media="all" href="/wdn/templates_3.1/css/debug.css" /> | ||
<link rel="stylesheet" type="text/css" media="all" href="/wdn/templates_4.0/css/all.css" /> | ||
|
||
<!-- Load the template JS file --> | ||
<script type="text/javascript" src="/wdn/templates_3.1/scripts/debug.js?dep=$DEP_VERSION$" id="wdn_dependents"></script> | ||
<script type="text/javascript" src="/wdn/templates_4.0/scripts/debug.js?dep=$DEP_VERSION$" id="wdn_dependents"></script> | ||
|
||
<!-- For old IE, bring in all the styles w/o media queries --> | ||
<!--[if lt IE 9]> | ||
<link rel="stylesheet" type="text/css" media="all" href="/wdn/templates_3.1/css/compressed/combined_widths.css" /> | ||
<link rel="stylesheet" type="text/css" media="all" href="/wdn/templates_4.0/css/compressed/combined_widths.css" /> | ||
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> | ||
<![endif]--> | ||
|
||
<!-- For all IE versions, bring in the tweaks --> | ||
<!--[if IE]> | ||
<link rel="stylesheet" type="text/css" media="all" href="/wdn/templates_3.1/css/variations/ie.css" /> | ||
<link rel="stylesheet" type="text/css" media="all" href="/wdn/templates_4.0/css/variations/ie.css" /> | ||
<![endif]--> | ||
|
||
<!-- Load the print styles --> | ||
<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_3.1/css/variations/print.css" /> | ||
<link rel="stylesheet" type="text/css" media="print" href="/wdn/templates_4.0/css/variations/print.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
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,7 @@ | ||
@brand: #ac0302; | ||
@darkCompliment: #352e01; | ||
@bright: rgb(209, 84, 165); //#D154A5 | ||
@lightCompliment: rgb(221, 199, 240); //#DDC7F0 | ||
@neutral: #f6f5ea; | ||
|
||
@base-text: @darkCompliment; |
Oops, something went wrong.