36 changed files with 4225 additions and 0 deletions
Split View
Diff Options
-
406build/less/reset.less
-
74build/less/site.less
-
4build/less/themes/basic/elements/button.overrides
-
39build/less/themes/basic/elements/button.variables
-
14build/minified/reset.min.css
-
14build/minified/site.min.css
-
4build/minified/themes/basic/elements/button.overrides
-
39build/minified/themes/basic/elements/button.variables
-
4build/packaged/themes/basic/elements/button.overrides
-
39build/packaged/themes/basic/elements/button.variables
-
425build/uncompressed/reset.css
-
598build/uncompressed/site.css
-
4build/uncompressed/themes/basic/elements/button.overrides
-
39build/uncompressed/themes/basic/elements/button.variables
-
103rtl/examples/feed.css
-
150rtl/examples/feed.html
-
23rtl/examples/feed.js
-
192rtl/examples/homepage.css
-
294rtl/examples/homepage.html
-
57rtl/examples/homepage.js
-
BINrtl/examples/images/bg.jpg
-
BINrtl/examples/images/cat.png
-
406rtl/less/reset.less
-
74rtl/less/site.less
-
4rtl/less/themes/basic/elements/button.overrides
-
39rtl/less/themes/basic/elements/button.variables
-
14rtl/minified/reset.min.css
-
14rtl/minified/site.min.css
-
4rtl/minified/themes/basic/elements/button.overrides
-
39rtl/minified/themes/basic/elements/button.variables
-
4rtl/packaged/themes/basic/elements/button.overrides
-
39rtl/packaged/themes/basic/elements/button.variables
-
425rtl/uncompressed/reset.css
-
598rtl/uncompressed/site.css
-
4rtl/uncompressed/themes/basic/elements/button.overrides
-
39rtl/uncompressed/themes/basic/elements/button.variables
@ -0,0 +1,406 @@ |
|||
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ |
|||
|
|||
/* ========================================================================== |
|||
HTML5 display definitions |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Correct `block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
article, |
|||
aside, |
|||
details, |
|||
figcaption, |
|||
figure, |
|||
footer, |
|||
header, |
|||
hgroup, |
|||
main, |
|||
nav, |
|||
section, |
|||
summary { |
|||
display: block; |
|||
} |
|||
|
|||
/** |
|||
* Correct `inline-block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
audio, |
|||
canvas, |
|||
video { |
|||
display: inline-block; |
|||
} |
|||
|
|||
/** |
|||
* Prevent modern browsers from displaying `audio` without controls. |
|||
* Remove excess height in iOS 5 devices. |
|||
*/ |
|||
|
|||
audio:not([controls]) { |
|||
display: none; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address `[hidden]` styling not present in IE 8/9. |
|||
* Hide the `template` element in IE, Safari, and Firefox < 22. |
|||
*/ |
|||
|
|||
[hidden], |
|||
template { |
|||
display: none; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Base |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* 1. Set default font family to sans-serif. |
|||
* 2. Prevent iOS text size adjust after orientation change, without disabling |
|||
* user zoom. |
|||
*/ |
|||
|
|||
html { |
|||
font-family: sans-serif; /* 1 */ |
|||
-ms-text-size-adjust: 100%; /* 2 */ |
|||
-webkit-text-size-adjust: 100%; /* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* Remove default margin. |
|||
*/ |
|||
|
|||
body { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Links |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove the gray background color from active links in IE 10. |
|||
*/ |
|||
|
|||
a { |
|||
background: transparent; |
|||
} |
|||
|
|||
/** |
|||
* Address `outline` inconsistency between Chrome and other browsers. |
|||
*/ |
|||
|
|||
a:focus { |
|||
outline: thin dotted; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability when focused and also mouse hovered in all browsers. |
|||
*/ |
|||
|
|||
a:active, |
|||
a:hover { |
|||
outline: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Typography |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address variable `h1` font-size and margin within `section` and `article` |
|||
* contexts in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
margin: 0.67em 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
abbr[title] { |
|||
border-bottom: 1px dotted; |
|||
} |
|||
|
|||
/** |
|||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
b, |
|||
strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
dfn { |
|||
font-style: italic; |
|||
} |
|||
|
|||
/** |
|||
* Address differences between Firefox and other browsers. |
|||
*/ |
|||
|
|||
hr { |
|||
-moz-box-sizing: content-box; |
|||
box-sizing: content-box; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9. |
|||
*/ |
|||
|
|||
mark { |
|||
background: #ff0; |
|||
color: #000; |
|||
} |
|||
|
|||
/** |
|||
* Correct font family set oddly in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
code, |
|||
kbd, |
|||
pre, |
|||
samp { |
|||
font-family: monospace, serif; |
|||
font-size: 1em; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability of pre-formatted text in all browsers. |
|||
*/ |
|||
|
|||
pre { |
|||
white-space: pre-wrap; |
|||
} |
|||
|
|||
/** |
|||
* Set consistent quote types. |
|||
*/ |
|||
|
|||
q { |
|||
quotes: "\201C" "\201D" "\2018" "\2019"; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent and variable font size in all browsers. |
|||
*/ |
|||
|
|||
small { |
|||
font-size: 80%; |
|||
} |
|||
|
|||
/** |
|||
* Prevent `sub` and `sup` affecting `line-height` in all browsers. |
|||
*/ |
|||
|
|||
sub, |
|||
sup { |
|||
font-size: 75%; |
|||
line-height: 0; |
|||
position: relative; |
|||
vertical-align: baseline; |
|||
} |
|||
|
|||
sup { |
|||
top: -0.5em; |
|||
} |
|||
|
|||
sub { |
|||
bottom: -0.25em; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Embedded content |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove border when inside `a` element in IE 8/9. |
|||
*/ |
|||
|
|||
img { |
|||
border: 0; |
|||
} |
|||
|
|||
/** |
|||
* Correct overflow displayed oddly in IE 9. |
|||
*/ |
|||
|
|||
svg:not(:root) { |
|||
overflow: hidden; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Figures |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address margin not present in IE 8/9 and Safari 5. |
|||
*/ |
|||
|
|||
figure { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Forms |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Define consistent border, margin, and padding. |
|||
*/ |
|||
|
|||
fieldset { |
|||
border: 1px solid #c0c0c0; |
|||
margin: 0 2px; |
|||
padding: 0.35em 0.625em 0.75em; |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct `color` not being inherited in IE 8/9. |
|||
* 2. Remove padding so people aren't caught out if they zero out fieldsets. |
|||
*/ |
|||
|
|||
legend { |
|||
border: 0; /* 1 */ |
|||
padding: 0; /* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct font family not being inherited in all browsers. |
|||
* 2. Correct font size not being inherited in all browsers. |
|||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
button, |
|||
input, |
|||
select, |
|||
textarea { |
|||
font-family: inherit; /* 1 */ |
|||
font-size: 100%; /* 2 */ |
|||
margin: 0; /* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in |
|||
* the UA stylesheet. |
|||
*/ |
|||
|
|||
button, |
|||
input { |
|||
line-height: normal; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent `text-transform` inheritance for `button` and `select`. |
|||
* All other form control elements do not inherit `text-transform` values. |
|||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. |
|||
* Correct `select` style inheritance in Firefox 4+ and Opera. |
|||
*/ |
|||
|
|||
button, |
|||
select { |
|||
text-transform: none; |
|||
} |
|||
|
|||
/** |
|||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` |
|||
* and `video` controls. |
|||
* 2. Correct inability to style clickable `input` types in iOS. |
|||
* 3. Improve usability and consistency of cursor style between image-type |
|||
* `input` and others. |
|||
*/ |
|||
|
|||
button, |
|||
html input[type="button"], /* 1 */ |
|||
input[type="reset"], |
|||
input[type="submit"] { |
|||
-webkit-appearance: button; /* 2 */ |
|||
cursor: pointer; /* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Re-set default cursor for disabled elements. |
|||
*/ |
|||
|
|||
button[disabled], |
|||
html input[disabled] { |
|||
cursor: default; |
|||
} |
|||
|
|||
/** |
|||
* 1. Address box sizing set to `content-box` in IE 8/9/10. |
|||
* 2. Remove excess padding in IE 8/9/10. |
|||
*/ |
|||
|
|||
input[type="checkbox"], |
|||
input[type="radio"] { |
|||
box-sizing: border-box; /* 1 */ |
|||
padding: 0; /* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. |
|||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome |
|||
* (include `-moz` to future-proof). |
|||
*/ |
|||
|
|||
input[type="search"] { |
|||
-webkit-appearance: textfield; /* 1 */ |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; /* 2 */ |
|||
box-sizing: content-box; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and search cancel button in Safari 5 and Chrome |
|||
* on OS X. |
|||
*/ |
|||
|
|||
input[type="search"]::-webkit-search-cancel-button, |
|||
input[type="search"]::-webkit-search-decoration { |
|||
-webkit-appearance: none; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and border in Firefox 4+. |
|||
*/ |
|||
|
|||
button::-moz-focus-inner, |
|||
input::-moz-focus-inner { |
|||
border: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
/** |
|||
* 1. Remove default vertical scrollbar in IE 8/9. |
|||
* 2. Improve readability and alignment in all browsers. |
|||
*/ |
|||
|
|||
textarea { |
|||
overflow: auto; /* 1 */ |
|||
vertical-align: top; /* 2 */ |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Tables |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove most spacing between table cells. |
|||
*/ |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0; |
|||
} |
@ -0,0 +1,74 @@ |
|||
@import "themes/default/global.variables"; |
|||
@import "reset.less"; |
|||
|
|||
/******************************* |
|||
Page |
|||
*******************************/ |
|||
|
|||
html, |
|||
body { |
|||
font-size: @fontSize; |
|||
} |
|||
|
|||
body { |
|||
background: @bodyBackground; |
|||
font-family: @fontFamily; |
|||
margin: 0px; |
|||
padding: 0px; |
|||
color: #555555; |
|||
min-width: 320px; |
|||
} |
|||
|
|||
/******************************* |
|||
Text |
|||
*******************************/ |
|||
|
|||
h1, |
|||
h2, |
|||
h3, |
|||
h4, |
|||
h5 { |
|||
margin: 1em 0em 1rem; |
|||
padding: 0em; |
|||
} |
|||
|
|||
p { |
|||
margin: 1em 0em; |
|||
} |
|||
p:first-child { |
|||
margin-top: 0em; |
|||
} |
|||
p:last-child { |
|||
margin-bottom: 0em; |
|||
} |
|||
|
|||
/*------------------- |
|||
Links |
|||
--------------------*/ |
|||
|
|||
a { |
|||
color: @linkColor; |
|||
text-decoration: @linkUnderline; |
|||
} |
|||
a:hover { |
|||
color: @linkHoverColor; |
|||
} |
|||
|
|||
|
|||
/******************************* |
|||
Highlighting |
|||
*******************************/ |
|||
|
|||
::-webkit-selection { |
|||
background-color: @highlightBackground; |
|||
color: @highlightColor; |
|||
} |
|||
::-moz-selection { |
|||
background-color: @highlightBackground; |
|||
color: @highlightColor; |
|||
} |
|||
::selection { |
|||
background-color: @highlightBackground; |
|||
color: @highlightColor; |
|||
} |
|||
|
@ -0,0 +1,4 @@ |
|||
/******************************* |
|||
Overrides |
|||
*******************************/ |
|||
|
@ -0,0 +1,39 @@ |
|||
/*------------------- |
|||
Button Variables |
|||
--------------------*/ |
|||
|
|||
/* Button Variables */ |
|||
@textTransform: none; |
|||
@fontWeight: normal; |
|||
@textColor: #333333; |
|||
|
|||
@borderRadius: 0.25em; |
|||
|
|||
@backgroundColor: #EEEEEE; |
|||
@backgroundImage: none; |
|||
@boxShadow: none; |
|||
|
|||
@hoverBackgroundColor: #DDDDDD; |
|||
@hoverBackgroundImage: none; |
|||
@hoverBoxShadow: none; |
|||
|
|||
@downBackgroundColor: #D0D0D0; |
|||
@downBackgroundImage: none; |
|||
@downBoxShadow: none; |
|||
|
|||
@activeBackgroundColor: #CCCCCC; |
|||
@activeBackgroundImage: none; |
|||
@activeBoxShadow: none; |
|||
|
|||
@verticalBoxShadow: none; |
|||
|
|||
@loadingBackgroundColor: #F0F0F0; |
|||
|
|||
@mini: 0.6rem; |
|||
@tiny: 0.7rem; |
|||
@small: 0.85rem; |
|||
@medium: 0.92rem; |
|||
@large: 1rem; |
|||
@big: 1.125rem; |
|||
@huge: 1.25rem; |
|||
@massive: 1.3rem; |
@ -0,0 +1,14 @@ |
|||
/* |
|||
* # Semantic UI |
|||
* Version: 0.12.0 |
|||
* http://github.com/jlukic/semantic-ui |
|||
* |
|||
* |
|||
* Copyright 2014 Contributors |
|||
* Released under the MIT license |
|||
* http://opensource.org/licenses/MIT |
|||
* |
|||
* Released: 01/13/2014 |
|||
*/ |
|||
|
|||
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0} |
@ -0,0 +1,14 @@ |
|||
/* |
|||
* # Semantic UI |
|||
* Version: 0.12.0 |
|||
* http://github.com/jlukic/semantic-ui |
|||
* |
|||
* |
|||
* Copyright 2014 Contributors |
|||
* Released under the MIT license |
|||
* http://opensource.org/licenses/MIT |
|||
* |
|||
* Released: 01/13/2014 |
|||
*/ |
|||
|
|||
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}html,body{font-size:15px}body{background:#fcfcfc;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;margin:0;padding:0;color:#555;min-width:320px}h1,h2,h3,h4,h5{margin:1em 0 1rem;padding:0}p{margin:1em 0}p:first-child{margin-top:0}p:last-child{margin-bottom:0}a{color:#009fda;text-decoration:none}a:hover{color:#00b2f3}::-webkit-selection{background-color:#ffc;color:rgba(0,0,0,.7)}::-moz-selection{background-color:#ffc;color:rgba(0,0,0,.7)}::selection{background-color:#ffc;color:rgba(0,0,0,.7)} |
@ -0,0 +1,4 @@ |
|||
/******************************* |
|||
Overrides |
|||
*******************************/ |
|||
|
@ -0,0 +1,39 @@ |
|||
/*------------------- |
|||
Button Variables |
|||
--------------------*/ |
|||
|
|||
/* Button Variables */ |
|||
@textTransform: none; |
|||
@fontWeight: normal; |
|||
@textColor: #333333; |
|||
|
|||
@borderRadius: 0.25em; |
|||
|
|||
@backgroundColor: #EEEEEE; |
|||
@backgroundImage: none; |
|||
@boxShadow: none; |
|||
|
|||
@hoverBackgroundColor: #DDDDDD; |
|||
@hoverBackgroundImage: none; |
|||
@hoverBoxShadow: none; |
|||
|
|||
@downBackgroundColor: #D0D0D0; |
|||
@downBackgroundImage: none; |
|||
@downBoxShadow: none; |
|||
|
|||
@activeBackgroundColor: #CCCCCC; |
|||
@activeBackgroundImage: none; |
|||
@activeBoxShadow: none; |
|||
|
|||
@verticalBoxShadow: none; |
|||
|
|||
@loadingBackgroundColor: #F0F0F0; |
|||
|
|||
@mini: 0.6rem; |
|||
@tiny: 0.7rem; |
|||
@small: 0.85rem; |
|||
@medium: 0.92rem; |
|||
@large: 1rem; |
|||
@big: 1.125rem; |
|||
@huge: 1.25rem; |
|||
@massive: 1.3rem; |
@ -0,0 +1,4 @@ |
|||
/******************************* |
|||
Overrides |
|||
*******************************/ |
|||
|
@ -0,0 +1,39 @@ |
|||
/*------------------- |
|||
Button Variables |
|||
--------------------*/ |
|||
|
|||
/* Button Variables */ |
|||
@textTransform: none; |
|||
@fontWeight: normal; |
|||
@textColor: #333333; |
|||
|
|||
@borderRadius: 0.25em; |
|||
|
|||
@backgroundColor: #EEEEEE; |
|||
@backgroundImage: none; |
|||
@boxShadow: none; |
|||
|
|||
@hoverBackgroundColor: #DDDDDD; |
|||
@hoverBackgroundImage: none; |
|||
@hoverBoxShadow: none; |
|||
|
|||
@downBackgroundColor: #D0D0D0; |
|||
@downBackgroundImage: none; |
|||
@downBoxShadow: none; |
|||
|
|||
@activeBackgroundColor: #CCCCCC; |
|||
@activeBackgroundImage: none; |
|||
@activeBoxShadow: none; |
|||
|
|||
@verticalBoxShadow: none; |
|||
|
|||
@loadingBackgroundColor: #F0F0F0; |
|||
|
|||
@mini: 0.6rem; |
|||
@tiny: 0.7rem; |
|||
@small: 0.85rem; |
|||
@medium: 0.92rem; |
|||
@large: 1rem; |
|||
@big: 1.125rem; |
|||
@huge: 1.25rem; |
|||
@massive: 1.3rem; |
@ -0,0 +1,425 @@ |
|||
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ |
|||
|
|||
/* ========================================================================== |
|||
HTML5 display definitions |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Correct `block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
article, |
|||
aside, |
|||
details, |
|||
figcaption, |
|||
figure, |
|||
footer, |
|||
header, |
|||
hgroup, |
|||
main, |
|||
nav, |
|||
section, |
|||
summary { |
|||
display: block; |
|||
} |
|||
|
|||
/** |
|||
* Correct `inline-block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
audio, |
|||
canvas, |
|||
video { |
|||
display: inline-block; |
|||
} |
|||
|
|||
/** |
|||
* Prevent modern browsers from displaying `audio` without controls. |
|||
* Remove excess height in iOS 5 devices. |
|||
*/ |
|||
|
|||
audio:not([controls]) { |
|||
display: none; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address `[hidden]` styling not present in IE 8/9. |
|||
* Hide the `template` element in IE, Safari, and Firefox < 22. |
|||
*/ |
|||
|
|||
[hidden], |
|||
template { |
|||
display: none; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Base |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* 1. Set default font family to sans-serif. |
|||
* 2. Prevent iOS text size adjust after orientation change, without disabling |
|||
* user zoom. |
|||
*/ |
|||
|
|||
html { |
|||
font-family: sans-serif; |
|||
/* 1 */ |
|||
-ms-text-size-adjust: 100%; |
|||
/* 2 */ |
|||
-webkit-text-size-adjust: 100%; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* Remove default margin. |
|||
*/ |
|||
|
|||
body { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Links |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove the gray background color from active links in IE 10. |
|||
*/ |
|||
|
|||
a { |
|||
background: transparent; |
|||
} |
|||
|
|||
/** |
|||
* Address `outline` inconsistency between Chrome and other browsers. |
|||
*/ |
|||
|
|||
a:focus { |
|||
outline: thin dotted; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability when focused and also mouse hovered in all browsers. |
|||
*/ |
|||
|
|||
a:active, |
|||
a:hover { |
|||
outline: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Typography |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address variable `h1` font-size and margin within `section` and `article` |
|||
* contexts in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
margin: 0.67em 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
abbr[title] { |
|||
border-bottom: 1px dotted; |
|||
} |
|||
|
|||
/** |
|||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
b, |
|||
strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
dfn { |
|||
font-style: italic; |
|||
} |
|||
|
|||
/** |
|||
* Address differences between Firefox and other browsers. |
|||
*/ |
|||
|
|||
hr { |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; |
|||
box-sizing: content-box; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9. |
|||
*/ |
|||
|
|||
mark { |
|||
background: #ff0; |
|||
color: #000; |
|||
} |
|||
|
|||
/** |
|||
* Correct font family set oddly in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
code, |
|||
kbd, |
|||
pre, |
|||
samp { |
|||
font-family: monospace, serif; |
|||
font-size: 1em; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability of pre-formatted text in all browsers. |
|||
*/ |
|||
|
|||
pre { |
|||
white-space: pre-wrap; |
|||
} |
|||
|
|||
/** |
|||
* Set consistent quote types. |
|||
*/ |
|||
|
|||
q { |
|||
quotes: "\201C" "\201D" "\2018" "\2019"; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent and variable font size in all browsers. |
|||
*/ |
|||
|
|||
small { |
|||
font-size: 80%; |
|||
} |
|||
|
|||
/** |
|||
* Prevent `sub` and `sup` affecting `line-height` in all browsers. |
|||
*/ |
|||
|
|||
sub, |
|||
sup { |
|||
font-size: 75%; |
|||
line-height: 0; |
|||
position: relative; |
|||
vertical-align: baseline; |
|||
} |
|||
|
|||
sup { |
|||
top: -0.5em; |
|||
} |
|||
|
|||
sub { |
|||
bottom: -0.25em; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Embedded content |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove border when inside `a` element in IE 8/9. |
|||
*/ |
|||
|
|||
img { |
|||
border: 0; |
|||
} |
|||
|
|||
/** |
|||
* Correct overflow displayed oddly in IE 9. |
|||
*/ |
|||
|
|||
svg:not(:root) { |
|||
overflow: hidden; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Figures |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address margin not present in IE 8/9 and Safari 5. |
|||
*/ |
|||
|
|||
figure { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Forms |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Define consistent border, margin, and padding. |
|||
*/ |
|||
|
|||
fieldset { |
|||
border: 1px solid #c0c0c0; |
|||
margin: 0 2px; |
|||
padding: 0.35em 0.625em 0.75em; |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct `color` not being inherited in IE 8/9. |
|||
* 2. Remove padding so people aren't caught out if they zero out fieldsets. |
|||
*/ |
|||
|
|||
legend { |
|||
border: 0; |
|||
/* 1 */ |
|||
padding: 0; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct font family not being inherited in all browsers. |
|||
* 2. Correct font size not being inherited in all browsers. |
|||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
button, |
|||
input, |
|||
select, |
|||
textarea { |
|||
font-family: inherit; |
|||
/* 1 */ |
|||
font-size: 100%; |
|||
/* 2 */ |
|||
margin: 0; |
|||
/* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in |
|||
* the UA stylesheet. |
|||
*/ |
|||
|
|||
button, |
|||
input { |
|||
line-height: normal; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent `text-transform` inheritance for `button` and `select`. |
|||
* All other form control elements do not inherit `text-transform` values. |
|||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. |
|||
* Correct `select` style inheritance in Firefox 4+ and Opera. |
|||
*/ |
|||
|
|||
button, |
|||
select { |
|||
text-transform: none; |
|||
} |
|||
|
|||
/** |
|||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` |
|||
* and `video` controls. |
|||
* 2. Correct inability to style clickable `input` types in iOS. |
|||
* 3. Improve usability and consistency of cursor style between image-type |
|||
* `input` and others. |
|||
*/ |
|||
|
|||
button, |
|||
html input[type="button"], |
|||
input[type="reset"], |
|||
input[type="submit"] { |
|||
-webkit-appearance: button; |
|||
/* 2 */ |
|||
cursor: pointer; |
|||
/* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Re-set default cursor for disabled elements. |
|||
*/ |
|||
|
|||
button[disabled], |
|||
html input[disabled] { |
|||
cursor: default; |
|||
} |
|||
|
|||
/** |
|||
* 1. Address box sizing set to `content-box` in IE 8/9/10. |
|||
* 2. Remove excess padding in IE 8/9/10. |
|||
*/ |
|||
|
|||
input[type="checkbox"], |
|||
input[type="radio"] { |
|||
-webkit-box-sizing: border-box; |
|||
-moz-box-sizing: border-box; |
|||
box-sizing: border-box; |
|||
/* 1 */ |
|||
padding: 0; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. |
|||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome |
|||
* (include `-moz` to future-proof). |
|||
*/ |
|||
|
|||
input[type="search"] { |
|||
-webkit-appearance: textfield; |
|||
/* 1 */ |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; |
|||
/* 2 */ |
|||
box-sizing: content-box; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and search cancel button in Safari 5 and Chrome |
|||
* on OS X. |
|||
*/ |
|||
|
|||
input[type="search"]::-webkit-search-cancel-button, |
|||
input[type="search"]::-webkit-search-decoration { |
|||
-webkit-appearance: none; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and border in Firefox 4+. |
|||
*/ |
|||
|
|||
button::-moz-focus-inner, |
|||
input::-moz-focus-inner { |
|||
border: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
/** |
|||
* 1. Remove default vertical scrollbar in IE 8/9. |
|||
* 2. Improve readability and alignment in all browsers. |
|||
*/ |
|||
|
|||
textarea { |
|||
overflow: auto; |
|||
/* 1 */ |
|||
vertical-align: top; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Tables |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove most spacing between table cells. |
|||
*/ |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0; |
|||
} |
@ -0,0 +1,598 @@ |
|||
/******************************* |
|||
Global Variables |
|||
*******************************/ |
|||
|
|||
/*------------------- |
|||
Paths |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Page |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Fonts |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Icons |
|||
--------------------*/ |
|||
|
|||
/* Width of largest icon */ |
|||
|
|||
/******************************* |
|||
BG Colors |
|||
*******************************/ |
|||
|
|||
/******************************* |
|||
Colors |
|||
*******************************/ |
|||
|
|||
/*------------------- |
|||
Background |
|||
--------------------*/ |
|||
|
|||
/*--- Colors ---*/ |
|||
|
|||
/*--- Emotive ---*/ |
|||
|
|||
/*--- Neutrals ---*/ |
|||
|
|||
/*------------------- |
|||
Text Colors |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Brand Colors |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Borders |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Sizes |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Transitions |
|||
--------------------*/ |
|||
|
|||
/******************************* |
|||
States |
|||
*******************************/ |
|||
|
|||
/*------------------- |
|||
Disabled |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Hover |
|||
--------------------*/ |
|||
|
|||
/*--- Colors ---*/ |
|||
|
|||
/*--- Emotive ---*/ |
|||
|
|||
/*--- Neutrals ---*/ |
|||
|
|||
/*------------------- |
|||
Down (:active) |
|||
--------------------*/ |
|||
|
|||
/*--- Colors ---*/ |
|||
|
|||
/*--- Emotive ---*/ |
|||
|
|||
/*--- Neutrals ---*/ |
|||
|
|||
/*------------------- |
|||
Active |
|||
--------------------*/ |
|||
|
|||
/*--- Standard ---*/ |
|||
|
|||
/*--- Emotive ---*/ |
|||
|
|||
/*--- Neutrals ---*/ |
|||
|
|||
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ |
|||
|
|||
/* ========================================================================== |
|||
HTML5 display definitions |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Correct `block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
article, |
|||
aside, |
|||
details, |
|||
figcaption, |
|||
figure, |
|||
footer, |
|||
header, |
|||
hgroup, |
|||
main, |
|||
nav, |
|||
section, |
|||
summary { |
|||
display: block; |
|||
} |
|||
|
|||
/** |
|||
* Correct `inline-block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
audio, |
|||
canvas, |
|||
video { |
|||
display: inline-block; |
|||
} |
|||
|
|||
/** |
|||
* Prevent modern browsers from displaying `audio` without controls. |
|||
* Remove excess height in iOS 5 devices. |
|||
*/ |
|||
|
|||
audio:not([controls]) { |
|||
display: none; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address `[hidden]` styling not present in IE 8/9. |
|||
* Hide the `template` element in IE, Safari, and Firefox < 22. |
|||
*/ |
|||
|
|||
[hidden], |
|||
template { |
|||
display: none; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Base |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* 1. Set default font family to sans-serif. |
|||
* 2. Prevent iOS text size adjust after orientation change, without disabling |
|||
* user zoom. |
|||
*/ |
|||
|
|||
html { |
|||
font-family: sans-serif; |
|||
/* 1 */ |
|||
-ms-text-size-adjust: 100%; |
|||
/* 2 */ |
|||
-webkit-text-size-adjust: 100%; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* Remove default margin. |
|||
*/ |
|||
|
|||
body { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Links |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove the gray background color from active links in IE 10. |
|||
*/ |
|||
|
|||
a { |
|||
background: transparent; |
|||
} |
|||
|
|||
/** |
|||
* Address `outline` inconsistency between Chrome and other browsers. |
|||
*/ |
|||
|
|||
a:focus { |
|||
outline: thin dotted; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability when focused and also mouse hovered in all browsers. |
|||
*/ |
|||
|
|||
a:active, |
|||
a:hover { |
|||
outline: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Typography |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address variable `h1` font-size and margin within `section` and `article` |
|||
* contexts in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
margin: 0.67em 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
abbr[title] { |
|||
border-bottom: 1px dotted; |
|||
} |
|||
|
|||
/** |
|||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
b, |
|||
strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
dfn { |
|||
font-style: italic; |
|||
} |
|||
|
|||
/** |
|||
* Address differences between Firefox and other browsers. |
|||
*/ |
|||
|
|||
hr { |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; |
|||
box-sizing: content-box; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9. |
|||
*/ |
|||
|
|||
mark { |
|||
background: #ff0; |
|||
color: #000; |
|||
} |
|||
|
|||
/** |
|||
* Correct font family set oddly in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
code, |
|||
kbd, |
|||
pre, |
|||
samp { |
|||
font-family: monospace, serif; |
|||
font-size: 1em; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability of pre-formatted text in all browsers. |
|||
*/ |
|||
|
|||
pre { |
|||
white-space: pre-wrap; |
|||
} |
|||
|
|||
/** |
|||
* Set consistent quote types. |
|||
*/ |
|||
|
|||
q { |
|||
quotes: "\201C" "\201D" "\2018" "\2019"; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent and variable font size in all browsers. |
|||
*/ |
|||
|
|||
small { |
|||
font-size: 80%; |
|||
} |
|||
|
|||
/** |
|||
* Prevent `sub` and `sup` affecting `line-height` in all browsers. |
|||
*/ |
|||
|
|||
sub, |
|||
sup { |
|||
font-size: 75%; |
|||
line-height: 0; |
|||
position: relative; |
|||
vertical-align: baseline; |
|||
} |
|||
|
|||
sup { |
|||
top: -0.5em; |
|||
} |
|||
|
|||
sub { |
|||
bottom: -0.25em; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Embedded content |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove border when inside `a` element in IE 8/9. |
|||
*/ |
|||
|
|||
img { |
|||
border: 0; |
|||
} |
|||
|
|||
/** |
|||
* Correct overflow displayed oddly in IE 9. |
|||
*/ |
|||
|
|||
svg:not(:root) { |
|||
overflow: hidden; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Figures |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address margin not present in IE 8/9 and Safari 5. |
|||
*/ |
|||
|
|||
figure { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Forms |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Define consistent border, margin, and padding. |
|||
*/ |
|||
|
|||
fieldset { |
|||
border: 1px solid #c0c0c0; |
|||
margin: 0 2px; |
|||
padding: 0.35em 0.625em 0.75em; |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct `color` not being inherited in IE 8/9. |
|||
* 2. Remove padding so people aren't caught out if they zero out fieldsets. |
|||
*/ |
|||
|
|||
legend { |
|||
border: 0; |
|||
/* 1 */ |
|||
padding: 0; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct font family not being inherited in all browsers. |
|||
* 2. Correct font size not being inherited in all browsers. |
|||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
button, |
|||
input, |
|||
select, |
|||
textarea { |
|||
font-family: inherit; |
|||
/* 1 */ |
|||
font-size: 100%; |
|||
/* 2 */ |
|||
margin: 0; |
|||
/* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in |
|||
* the UA stylesheet. |
|||
*/ |
|||
|
|||
button, |
|||
input { |
|||
line-height: normal; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent `text-transform` inheritance for `button` and `select`. |
|||
* All other form control elements do not inherit `text-transform` values. |
|||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. |
|||
* Correct `select` style inheritance in Firefox 4+ and Opera. |
|||
*/ |
|||
|
|||
button, |
|||
select { |
|||
text-transform: none; |
|||
} |
|||
|
|||
/** |
|||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` |
|||
* and `video` controls. |
|||
* 2. Correct inability to style clickable `input` types in iOS. |
|||
* 3. Improve usability and consistency of cursor style between image-type |
|||
* `input` and others. |
|||
*/ |
|||
|
|||
button, |
|||
html input[type="button"], |
|||
input[type="reset"], |
|||
input[type="submit"] { |
|||
-webkit-appearance: button; |
|||
/* 2 */ |
|||
cursor: pointer; |
|||
/* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Re-set default cursor for disabled elements. |
|||
*/ |
|||
|
|||
button[disabled], |
|||
html input[disabled] { |
|||
cursor: default; |
|||
} |
|||
|
|||
/** |
|||
* 1. Address box sizing set to `content-box` in IE 8/9/10. |
|||
* 2. Remove excess padding in IE 8/9/10. |
|||
*/ |
|||
|
|||
input[type="checkbox"], |
|||
input[type="radio"] { |
|||
-webkit-box-sizing: border-box; |
|||
-moz-box-sizing: border-box; |
|||
box-sizing: border-box; |
|||
/* 1 */ |
|||
padding: 0; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. |
|||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome |
|||
* (include `-moz` to future-proof). |
|||
*/ |
|||
|
|||
input[type="search"] { |
|||
-webkit-appearance: textfield; |
|||
/* 1 */ |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; |
|||
/* 2 */ |
|||
box-sizing: content-box; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and search cancel button in Safari 5 and Chrome |
|||
* on OS X. |
|||
*/ |
|||
|
|||
input[type="search"]::-webkit-search-cancel-button, |
|||
input[type="search"]::-webkit-search-decoration { |
|||
-webkit-appearance: none; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and border in Firefox 4+. |
|||
*/ |
|||
|
|||
button::-moz-focus-inner, |
|||
input::-moz-focus-inner { |
|||
border: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
/** |
|||
* 1. Remove default vertical scrollbar in IE 8/9. |
|||
* 2. Improve readability and alignment in all browsers. |
|||
*/ |
|||
|
|||
textarea { |
|||
overflow: auto; |
|||
/* 1 */ |
|||
vertical-align: top; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Tables |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove most spacing between table cells. |
|||
*/ |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0; |
|||
} |
|||
|
|||
/******************************* |
|||
Page |
|||
*******************************/ |
|||
|
|||
html, |
|||
body { |
|||
font-size: 15px; |
|||
} |
|||
|
|||
body { |
|||
background: #fcfcfc; |
|||
font-family: Open Sans, Helvetica Neue, Helvetica, Arial, sans-serif; |
|||
margin: 0px; |
|||
padding: 0px; |
|||
color: #555555; |
|||
min-width: 320px; |
|||
} |
|||
|
|||
/******************************* |
|||
Text |
|||
*******************************/ |
|||
|
|||
h1, |
|||
h2, |
|||
h3, |
|||
h4, |
|||
h5 { |
|||
margin: 1em 0em 1rem; |
|||
padding: 0em; |
|||
} |
|||
|
|||
p { |
|||
margin: 1em 0em; |
|||
} |
|||
|
|||
p:first-child { |
|||
margin-top: 0em; |
|||
} |
|||
|
|||
p:last-child { |
|||
margin-bottom: 0em; |
|||
} |
|||
|
|||
/*------------------- |
|||
Links |
|||
--------------------*/ |
|||
|
|||
a { |
|||
color: #009fda; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
a:hover { |
|||
color: #00b2f3; |
|||
} |
|||
|
|||
/******************************* |
|||
Highlighting |
|||
*******************************/ |
|||
|
|||
::-webkit-selection { |
|||
background-color: #ffffcc; |
|||
color: rgba(0, 0, 0, 0.7); |
|||
} |
|||
|
|||
::-moz-selection { |
|||
background-color: #ffffcc; |
|||
color: rgba(0, 0, 0, 0.7); |
|||
} |
|||
|
|||
::selection { |
|||
background-color: #ffffcc; |
|||
color: rgba(0, 0, 0, 0.7); |
|||
} |
@ -0,0 +1,4 @@ |
|||
/******************************* |
|||
Overrides |
|||
*******************************/ |
|||
|
@ -0,0 +1,39 @@ |
|||
/*------------------- |
|||
Button Variables |
|||
--------------------*/ |
|||
|
|||
/* Button Variables */ |
|||
@textTransform: none; |
|||
@fontWeight: normal; |
|||
@textColor: #333333; |
|||
|
|||
@borderRadius: 0.25em; |
|||
|
|||
@backgroundColor: #EEEEEE; |
|||
@backgroundImage: none; |
|||
@boxShadow: none; |
|||
|
|||
@hoverBackgroundColor: #DDDDDD; |
|||
@hoverBackgroundImage: none; |
|||
@hoverBoxShadow: none; |
|||
|
|||
@downBackgroundColor: #D0D0D0; |
|||
@downBackgroundImage: none; |
|||
@downBoxShadow: none; |
|||
|
|||
@activeBackgroundColor: #CCCCCC; |
|||
@activeBackgroundImage: none; |
|||
@activeBoxShadow: none; |
|||
|
|||
@verticalBoxShadow: none; |
|||
|
|||
@loadingBackgroundColor: #F0F0F0; |
|||
|
|||
@mini: 0.6rem; |
|||
@tiny: 0.7rem; |
|||
@small: 0.85rem; |
|||
@medium: 0.92rem; |
|||
@large: 1rem; |
|||
@big: 1.125rem; |
|||
@huge: 1.25rem; |
|||
@massive: 1.3rem; |
@ -0,0 +1,103 @@ |
|||
/******************************* |
|||
Global |
|||
*******************************/ |
|||
|
|||
html, |
|||
body { |
|||
font-size: 15px; |
|||
height: 100%; |
|||
} |
|||
|
|||
body { |
|||
font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif; |
|||
background: #FFFFFF; |
|||
margin: 0px; |
|||
padding: 0px; |
|||
color: #555555; |
|||
text-rendering: optimizeLegibility; |
|||
min-width: 320px; |
|||
} |
|||
|
|||
.ui.header { |
|||
font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif; |
|||
} |
|||
|
|||
/******************************* |
|||
Global |
|||
*******************************/ |
|||
|
|||
/*------------------- |
|||
Sidebar |
|||
--------------------*/ |
|||
|
|||
#feed .sidebar { |
|||
overflow: visible; |
|||
} |
|||
|
|||
/*------------------- |
|||
Grid |
|||
--------------------*/ |
|||
|
|||
#feed .grid { |
|||
height: 100%; |
|||
} |
|||
|
|||
#feed > .grid > .column { |
|||
height: 100%; |
|||
} |
|||
|
|||
/*------------------- |
|||
Inbox |
|||
--------------------*/ |
|||
|
|||
#feed .inbox.tab { |
|||
background-color: #FFFFFF; |
|||
} |
|||
|
|||
#feed .inbox.tab .item { |
|||
padding-top: 1rem; |
|||
padding-bottom: 1rem; |
|||
} |
|||
|
|||
#feed .inbox.tab .item .rating { |
|||
margin-top: 0.2rem; |
|||
} |
|||
|
|||
#feed .inbox.tab .item .description { |
|||
margin-right: 2em; |
|||
} |
|||
|
|||
#feed .page { |
|||
float: left; |
|||
margin-top: 0.9em; |
|||
} |
|||
|
|||
#feed .middle.column { |
|||
padding: 1em 2em; |
|||
} |
|||
|
|||
#feed .middle.column h2 { |
|||
margin-top: 0em; |
|||
} |
|||
|
|||
#feed .right.column { |
|||
padding: 1em 2em; |
|||
background-color: #FAFAFA; |
|||
} |
|||
|
|||
/******************************* |
|||
Responsive |
|||
*******************************/ |
|||
|
|||
@media only screen and (max-width : 1000px) { |
|||
#feed .inbox .date { |
|||
float: none; |
|||
margin-bottom: 0.5em; |
|||
} |
|||
} |
|||
|
|||
@media only screen and (max-width : 1250px) { |
|||
#feed .left.column > .menu .item { |
|||
font-size: 1rem; |
|||
} |
|||
} |
@ -0,0 +1,150 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<!-- Standard Meta --> |
|||
<meta charset="utf-8" /> |
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> |
|||
|
|||
<!-- Site Properities --> |
|||
<title>Feed Example - Semantic</title> |
|||
|
|||
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Open+Sans:300italic,400,300,700' rel='stylesheet' type='text/css'> |
|||
<link rel="stylesheet" type="text/css" href="../packaged/css/semantic.css"> |
|||
|
|||
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script> |
|||
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.address/1.6/jquery.address.js"></script> |
|||
<script src="../packaged/javascript/semantic.js"></script> |
|||
|
|||
<link rel="stylesheet" type="text/css" href="feed.css"> |
|||
<script src="feed.js"></script> |
|||
</head> |
|||
<body id="feed"> |
|||
<div class="ui large inverted vertical sidebar menu"> |
|||
<a class="active item"> |
|||
Dogs Weekly <span class="ui label">213</span> |
|||
</a> |
|||
<a class="item"> |
|||
Joystiq <span class="ui label">113</span> |
|||
</a> |
|||
<div class="item"> |
|||
<b>Archived Feeds</b> |
|||
<div class="menu"> |
|||
<a class="item"> |
|||
Engadget <span class="ui label">11</span> |
|||
</a> |
|||
<a class="item"> |
|||
NY Times Tech Blog <span class="ui label">21</span> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<a class="item"> |
|||
<i class="bookmark icon"></i> Favorites |
|||
</a> |
|||
<div class="ui dropdown item"> |
|||
<i class="add icon"></i> New |
|||
<div class="menu"> |
|||
<a class="item"><i class="rss icon"></i> Feed</a> |
|||
<a class="item"><i class="tag icon"></i> Tag</a> |
|||
<a class="item"><i class="folder icon"></i> Group</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="ui celled grid"> |
|||
<div class="seven wide middle column"> |
|||
<div class="ui right floated black launch button"> |
|||
<i class="list layout icon"></i> Menu |
|||
</div> |
|||
<h2 class="ui header"> |
|||
<i class="inbox icon"></i> |
|||
Inbox |
|||
</h2> |
|||
<div class="ui tabular filter menu"> |
|||
<a class="active item" data-tab="unread">Unread</a> |
|||
<a class="item" data-tab="saved">Saved</a> |
|||
<a class="item" data-tab="all">All</a> |
|||
</div> |
|||
<div class="ui divided inbox selection list active tab" data-tab="unread"> |
|||
<a class="active item"> |
|||
<div class="left floated ui star rating"><i class="icon"></i></div> |
|||
<div class="right floated date">Sep 14, 2013</div> |
|||
<div class="description">Weekly Webcomic Wrapup fought the law, and the law won</div> |
|||
</a> |
|||
<a class="item"> |
|||
<div class="left floated ui star rating"><i class="icon"></i></div> |
|||
<div class="right floated date">Sep 14, 2013</div> |
|||
<div class="description">Scientists discover new breed of dog</div> |
|||
</a> |
|||
<a class="item"> |
|||
<div class="left floated ui star rating"><i class="icon"></i></div> |
|||
<div class="right floated date">Sep 10, 2013</div> |
|||
<div class="description">Dogs colony in Antarctica</div> |
|||
</a> |
|||
<a class="item"> |
|||
<div class="left floated ui star rating"><i class="icon"></i></div> |
|||
<div class="right floated date">Sep 09, 2013</div> |
|||
<div class="description">Famous dog whisperer Chakotay dies today at 104</div> |
|||
</a> |
|||
<a class="item"> |
|||
<div class="left floated ui star rating"><i class="icon"></i></div> |
|||
<div class="right floated date">Sep 07, 2013</div> |
|||
<div class="description">Top 10 Things to Know about Labradoodles</div> |
|||
</a> |
|||
<a class="item"> |
|||
<div class="left floated ui star rating"><i class="icon"></i></div> |
|||
<div class="right floated date">Sep 05, 2013</div> |
|||
<div class="description">Study shows children enjoy the company of animals</div> |
|||
</a> |
|||
</div> |
|||
<div class="ui divided inbox selection list tab" data-tab="saved"> |
|||
<a class="item"> |
|||
<div class="left floated ui star rating"><i class="icon"></i></div> |
|||
<div class="right floated date">Sep 14, 2013</div> |
|||
<div class="description">Your favorite saved article</div> |
|||
</a> |
|||
<a class="item"> |
|||
<div class="left floated ui star rating"><i class="icon"></i></div> |
|||
<div class="right floated date">Sep 14, 2013</div> |
|||
<div class="description">Your favorite saved article</div> |
|||
</a> |
|||
<a class="item"> |
|||
<div class="left floated ui star rating"><i class="icon"></i></div> |
|||
<div class="right floated date">Sep 14, 2013</div> |
|||
<div class="description">Your favorite saved article</div> |
|||
</a> |
|||
</div> |
|||
<div class="ui divided inbox selection list tab" data-tab="all"> |
|||
<a class="item"> |
|||
<div class="left floated ui star rating"><i class="link icon"></i></div> |
|||
<div class="right floated date">Sep 14, 2013</div> |
|||
<div class="description">There turns out there is only one article under all.</div> |
|||
</a> |
|||
</div> |
|||
|
|||
<div class="ui divider"></div> |
|||
|
|||
<div class="page">Showing <b>6</b> of 213</div> |
|||
<div class="ui pagination menu"> |
|||
<a class="icon item"><i class="icon left arrow"></i></a> |
|||
<a class="active item">1</a> |
|||
<div class="disabled item">...</div> |
|||
<a class="item">10</a> |
|||
<a class="item">11</a> |
|||
<a class="item">12</a> |
|||
<a class="icon item"><i class="icon right arrow"></i></a> |
|||
</div> |
|||
</div> |
|||
<div class="nine wide right column"> |
|||
<h1 class="ui header">Weekly Webcomic Wrapup fought the law, and the law won</h1> |
|||
Tags: <a class="ui teal label">Unread</a> <a class="ui teal label">Comics</a> |
|||
<p>So there's this video game coming out Tuesday called Grand Theft Auto 5. Don't know if you've heard of it. Anyways, it's all about crime and gangs and some roughneck ne'er-do-wells, so I thought this would be the perfect time to talk about times when we've been... well, less than perfect.</p> |
|||
<p>When I was a young'un, I was a frequent visitor to the local swimming pool. I was also a frequent lover of AirHeads candy, which the pool happened to sell. Waiting, watching, stalking the counter like a big cat in the savannah, I waited for the perfect opportunity to strike. While the lifeguards were busy, I snuck through the gate, reached up and took both cherry and "mystery white" AirHeads. I quickly ran out to the sidewalk and reveled in my sweet, delicious victory... for all of ten seconds, before I felt guilty enough to sneak back in and return the .20 worth of candy I had stolen.</p> |
|||
<p>While you confess your crimes - hopefully minor, and nothing you can be persecuted for - take a moment to enjoy this week's webcomics, and vote for your favorite after the jump.</p> |
|||
<div class="ui divider"></div> |
|||
<div class="ui basic button">Save</div> |
|||
<div class="ui basic button">Delete</div> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
|
|||
</html> |
@ -0,0 +1,23 @@ |
|||
$(document) |
|||
.ready(function() { |
|||
|
|||
$('.filter.menu .item') |
|||
.tab() |
|||
; |
|||
|
|||
$('.ui.rating') |
|||
.rating({ |
|||
clearable: true |
|||
}) |
|||
; |
|||
|
|||
$('.ui.sidebar') |
|||
.sidebar('attach events', '.launch.button') |
|||
; |
|||
|
|||
$('.ui.dropdown') |
|||
.dropdown() |
|||
; |
|||
|
|||
}) |
|||
; |
@ -0,0 +1,192 @@ |
|||
/******************************* |
|||
Global |
|||
*******************************/ |
|||
|
|||
html, |
|||
body { |
|||
font-size: 15px; |
|||
height: 100%; |
|||
} |
|||
|
|||
body { |
|||
font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif; |
|||
background: #FFFFFF; |
|||
margin: 0px; |
|||
padding: 0px; |
|||
color: #555555; |
|||
text-rendering: optimizeLegibility; |
|||
min-width: 320px; |
|||
} |
|||
|
|||
/******************************* |
|||
UI Overrides |
|||
*******************************/ |
|||
|
|||
.ui.header { |
|||
font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif; |
|||
} |
|||
|
|||
.ui.header, |
|||
h1, |
|||
h2 { |
|||
font-weight: normal !important; |
|||
} |
|||
|
|||
h1.ui.header { |
|||
font-size: 3em; |
|||
} |
|||
|
|||
h4.ui.header, |
|||
h5.ui.header, |
|||
.ui.icon.header { |
|||
font-weight: bold !important; |
|||
} |
|||
|
|||
.ui.button { |
|||
font-weight: normal; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
a { |
|||
color: #009FDA; |
|||
text-decoration: none; |
|||
-webkit-transition: color 0.3s ease; |
|||
transition: color 0.3s ease; |
|||
} |
|||
|
|||
a:hover { |
|||
color: #00BAFF; |
|||
} |
|||
|
|||
p a { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
/******************************* |
|||
Global |
|||
*******************************/ |
|||
|
|||
.menu .right.menu > .mobile.item { |
|||
display: none; |
|||
} |
|||
|
|||
.ui.page.grid.segment { |
|||
padding-top: 3.5rem; |
|||
padding-bottom: 3.5rem; |
|||
} |
|||
|
|||
.masthead.segment { |
|||
background-image: url(images/bg.jpg); |
|||
-webkit-background-size: cover; |
|||
background-size: cover; |
|||
margin: 0em; |
|||
padding-top: 4rem; |
|||
overflow: hidden; |
|||
-webkit-box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.1) inset !important; |
|||
box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.1) inset !important; |
|||
} |
|||
|
|||
.masthead.segment .column { |
|||
position: relative; |
|||
} |
|||
|
|||
.masthead.segment .information { |
|||
margin: 3em 280px 1em 1em; |
|||
} |
|||
|
|||
.masthead.segment .information p { |
|||
max-width: 600px; |
|||
margin: 0em 0em 2em 0px; |
|||
font-size: 1.2em; |
|||
} |
|||
|
|||
.masthead.segment h1.ui.header .sub { |
|||
font-size: 0.7em; |
|||
} |
|||
|
|||
.masthead.segment .image { |
|||
position: absolute; |
|||
right: 0%; |
|||
bottom: -110px; |
|||
} |
|||
|
|||
.overview .divided.grid .header + p { |
|||
min-height: 100px; |
|||
} |
|||
|
|||
.ui.shape .icon, |
|||
.link.list .icon { |
|||
margin: 0em; |
|||
padding: 0em; |
|||
} |
|||
|
|||
.ui.cube.shape .side { |
|||
background-color: transparent; |
|||
} |
|||
|
|||
/******************************* |
|||
Responsive |
|||
*******************************/ |
|||
|
|||
/* Mobile Only */ |
|||
|
|||
@media only screen and (max-width : 768px) { |
|||
.ui.page.grid.segment { |
|||
padding-top: 2rem; |
|||
padding-bottom: 2rem; |
|||
} |
|||
|
|||
.menu .right.menu > .item { |
|||
display: none; |
|||
} |
|||
|
|||
.menu .right.menu > .mobile.item { |
|||
display: block; |
|||
} |
|||
|
|||
h1.ui.header { |
|||
font-size: 1.5em; |
|||
} |
|||
|
|||
.masthead.segment { |
|||
-webkit-background-size: auto; |
|||
background-size: auto; |
|||
} |
|||
|
|||
.masthead.segment .information { |
|||
margin-right: 190px; |
|||
} |
|||
|
|||
.masthead.segment .image { |
|||
bottom: -65px; |
|||
width: 150px; |
|||
} |
|||
|
|||
.masthead.segment .button { |
|||
font-size: 1rem; |
|||
} |
|||
|
|||
.overview .divided.grid .header .icon { |
|||
font-size: 1.5em; |
|||
} |
|||
|
|||
.overview .divided.grid .header + p { |
|||
min-height: 0px; |
|||
} |
|||
|
|||
.masthead.segment .column { |
|||
font-size: 0.7rem; |
|||
} |
|||
|
|||
.masthead.segment .column p { |
|||
display: none; |
|||
} |
|||
|
|||
.selection.list .right.floated { |
|||
display: none; |
|||
} |
|||
} |
|||
|
|||
@media only screen and (max-width : 1000px) { |
|||
|
|||
} |
@ -0,0 +1,294 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<!-- Standard Meta --> |
|||
<meta charset="utf-8" /> |
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> |
|||
|
|||
<!-- Site Properities --> |
|||
<title>Homepage Example - Semantic</title> |
|||
|
|||
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Open+Sans:300italic,400,300,700' rel='stylesheet' type='text/css'> |
|||
|
|||
<link rel="stylesheet" type="text/css" href="../packaged/css/semantic.css"> |
|||
<link rel="stylesheet" type="text/css" href="homepage.css"> |
|||
|
|||
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script> |
|||
<script src="../packaged/javascript/semantic.js"></script> |
|||
<script src="homepage.js"></script> |
|||
|
|||
</head> |
|||
<body id="home"> |
|||
<div class="ui inverted page grid masthead segment"> |
|||
<div class="column"> |
|||
<div class="inverted secondary pointing ui menu"> |
|||
<div class="header item">Cat University</div> |
|||
<div class="right menu"> |
|||
<div class="ui top right pointing mobile dropdown link item"> |
|||
Menu |
|||
<i class="dropdown icon"></i> |
|||
<div class="menu"> |
|||
<a class="item">Classes</a> |
|||
<a class="item">Cocktail Hours</a> |
|||
<a class="item">Community</a> |
|||
</div> |
|||
</div> |
|||
<div class="ui dropdown link item"> |
|||
Courses |
|||
<i class="dropdown icon"></i> |
|||
<div class="menu"> |
|||
<a class="item">Petting</a> |
|||
<a class="item">Feeding</a> |
|||
<a class="item">Mind Reading</a> |
|||
</div> |
|||
</div> |
|||
<a class="item">Library</a> |
|||
<a class="item">Community</a> |
|||
</div> |
|||
</div> |
|||
<img src="images/cat.png" class="ui medium image"> |
|||
<div class="ui hidden transition information"> |
|||
<h1 class="ui inverted header"> |
|||
Your Cat is Dumb |
|||
</h1> |
|||
<p>At least he won't reach his highest potential unless you enroll him in Cat University's 2013 class.</p> |
|||
<div class="large basic inverted animated fade ui button"> |
|||
<div class="visible content">Come to ICU 2013</div> |
|||
<div class="hidden content">Register Now</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="ui page grid overview segment"> |
|||
<div class="ui two wide column"></div> |
|||
<div class="twelve wide column"> |
|||
<div class="ui three column center aligned stackable divided grid"> |
|||
<div class="column"> |
|||
<div class="ui icon header"> |
|||
<i class="circular book link icon"></i> |
|||
Courses |
|||
</div> |
|||
<p>Take your kitty to a cat-ducation course and learn how to treat her well.</p> |
|||
<p><a class="ui teal right labeled icon button" href="#">Learn <i class="right long arrow icon"></i></a></p> |
|||
</div> |
|||
<div class="column"> |
|||
<div class="ui icon header"> |
|||
<i class="circular code link icon"></i> |
|||
Library |
|||
</div> |
|||
<p>Dig through our cat library to found out amazing things you can do with your kitty.</p> |
|||
<p><a class="ui teal right labeled icon button" href="#">Research <i class="right long arrow icon"></i></a></p> |
|||
</div> |
|||
<div class="column"> |
|||
<div class="ui icon header"> |
|||
<i class="circular user link icon"></i> |
|||
Community |
|||
</div> |
|||
<p>Get feedback on your cat from a community of loving pet owners on our online bulletin board system.</p> |
|||
<p><a class="ui teal right labeled icon button" href="#">Share <i class="right long arrow icon"></i></a></p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="ui inverted page grid stackable relaxed feature segment"> |
|||
<div class="row"> |
|||
<div class="column"> |
|||
<h1 class="center aligned ui header"> |
|||
Cat Tips Right In Your Inbox |
|||
</h1> |
|||
</div> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="ten wide column"> |
|||
<h2 class="ui header">How to Win Your Cats Attention</h2> |
|||
<p>Getting your cat to notice you is a large part of being a pet owner. Although I have a lot of patience for writing things about cats, perhaps this might be enough body copy to make this section of text look filled out.</p> |
|||
<p>This and other tips can be found in our newsletter, amazing right?</p> |
|||
<div class="ui basic inverted animated button button"> |
|||
<div class="visible content">Read More</div> |
|||
<div class="hidden content"><i class="right arrow icon"></i></div> |
|||
</div> |
|||
<div class="ui inverted section divider"></div> |
|||
<h3 class="ui header">More articles</h3> |
|||
<div class="ui inverted animated selection list"> |
|||
<div class="item"> |
|||
How to win in a fight with a cat |
|||
<div class="right floated">Jan 20, 2023</div> |
|||
</div> |
|||
<div class="item"> |
|||
A Supposedly Fun Cat Toy I will Never Buy Again |
|||
<div class="right floated">Jan 1, 2023</div> |
|||
</div> |
|||
<div class="item"> |
|||
Much ado about yarn |
|||
<div class="right floated">Dec 20, 2022</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="six wide column"> |
|||
<div class="ui secondary form segment"> |
|||
<h3 class="ui header">Get Our Amazing Newsletter Bi-Daily</h3> |
|||
<p>Sign up and get spammed with cats every day. We have no unsubscribe button!</p> |
|||
<div class="field"> |
|||
<div class="ui left icon action input"> |
|||
<i class="user icon"></i> |
|||
<input name="email" type="text" placeholder="name@email.com"> |
|||
<div class="ui teal submit button">Sign up</div> |
|||
</div> |
|||
</div> |
|||
<div class="ui error message"></div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="ui page grid stackable segment"> |
|||
<div class="row"> |
|||
<div class="column"> |
|||
<h1 class="center aligned ui header"> |
|||
Many Companies Rely on Our Cat Knowledge |
|||
</h1> |
|||
<div class="ui horizontal divider"><i class="heart icon"></i></div> |
|||
</div> |
|||
</div> |
|||
<div class="center four column aligned row"> |
|||
<div class="column"> |
|||
<div class="ui text shape"> |
|||
<div class="sides"> |
|||
<div class="active side"> |
|||
<i class="huge circular github icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular facebook icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular maxcdn icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular pinterest icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular weibo icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular flickr icon"></i> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="column"> |
|||
<div class="ui text shape"> |
|||
<div class="sides"> |
|||
<div class="side"> |
|||
<i class="huge circular github icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular facebook icon"></i> |
|||
</div> |
|||
<div class="active side"> |
|||
<i class="huge circular maxcdn icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular pinterest icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular weibo icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular flickr icon"></i> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="column"> |
|||
<div class="ui text shape"> |
|||
<div class="sides"> |
|||
<div class="side"> |
|||
<i class="huge circular github icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular facebook icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular maxcdn icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular pinterest icon"></i> |
|||
</div> |
|||
<div class="active side"> |
|||
<i class="huge circular weibo icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular flickr icon"></i> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="column"> |
|||
<div class="ui text shape"> |
|||
<div class="sides"> |
|||
<div class="side"> |
|||
<i class="huge circular github icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular facebook icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular maxcdn icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular pinterest icon"></i> |
|||
</div> |
|||
<div class="side"> |
|||
<i class="huge circular weibo icon"></i> |
|||
</div> |
|||
<div class="active side"> |
|||
<i class="huge circular flickr icon"></i> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="ui inverted teal page grid segment"> |
|||
<div class="ten wide column"> |
|||
<div class="ui three column stackable grid"> |
|||
<div class="column"> |
|||
<div class="ui header">Courses</div> |
|||
<div class="ui inverted link list"> |
|||
<a class="item">Registration</a> |
|||
<a class="item">Course Calendar</a> |
|||
<a class="item">Professors</a> |
|||
</div> |
|||
</div> |
|||
<div class="column"> |
|||
<div class="ui header">Library</div> |
|||
<div class="ui inverted link list"> |
|||
<a class="item">A-Z</a> |
|||
<a class="item">Most Popular</a> |
|||
<a class="item">Recently Changed</a> |
|||
</div> |
|||
</div> |
|||
<div class="column"> |
|||
<div class="ui header">Community</div> |
|||
<div class="ui inverted link list"> |
|||
<a class="item">BBS</a> |
|||
<a class="item">Careers</a> |
|||
<a class="item">Privacy Policy</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="six wide right floated aligned column"> |
|||
<h3 class="ui header">Contact Us</h3> |
|||
<addr> |
|||
237 Catberry Road <br> |
|||
Milton Keynes, London <br> |
|||
</addr> |
|||
<p>(404) 867-5309</p> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
|
|||
</html> |
@ -0,0 +1,57 @@ |
|||
$(document) |
|||
.ready(function() { |
|||
|
|||
var |
|||
changeSides = function() { |
|||
$('.ui.shape') |
|||
.eq(0) |
|||
.shape('flip over') |
|||
.end() |
|||
.eq(1) |
|||
.shape('flip over') |
|||
.end() |
|||
.eq(2) |
|||
.shape('flip back') |
|||
.end() |
|||
.eq(3) |
|||
.shape('flip back') |
|||
.end() |
|||
; |
|||
}, |
|||
validationRules = { |
|||
firstName: { |
|||
identifier : 'email', |
|||
rules: [ |
|||
{ |
|||
type : 'empty', |
|||
prompt : 'Please enter an e-mail' |
|||
}, |
|||
{ |
|||
type : 'email', |
|||
prompt : 'Please enter a valid e-mail' |
|||
} |
|||
] |
|||
} |
|||
} |
|||
; |
|||
|
|||
$('.ui.dropdown') |
|||
.dropdown({ |
|||
on: 'hover' |
|||
}) |
|||
; |
|||
|
|||
$('.ui.form') |
|||
.form(validationRules, { |
|||
on: 'blur' |
|||
}) |
|||
; |
|||
|
|||
$('.masthead .information') |
|||
.transition('scale in') |
|||
; |
|||
|
|||
setInterval(changeSides, 3000); |
|||
|
|||
}) |
|||
; |
@ -0,0 +1,406 @@ |
|||
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ |
|||
|
|||
/* ========================================================================== |
|||
HTML5 display definitions |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Correct %60block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
article, |
|||
aside, |
|||
details, |
|||
figcaption, |
|||
figure, |
|||
footer, |
|||
header, |
|||
hgroup, |
|||
main, |
|||
nav, |
|||
section, |
|||
summary { |
|||
display: block; |
|||
} |
|||
|
|||
/** |
|||
* Correct `inline-block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
audio, |
|||
canvas, |
|||
video { |
|||
display: inline-block; |
|||
} |
|||
|
|||
/** |
|||
* Prevent modern browsers from displaying `audio` without controls. |
|||
* Remove excess height in iOS 5 devices. |
|||
*/ |
|||
|
|||
audio:not([controls]) { |
|||
display: none; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address `[hidden]` styling not present in IE 8/9. |
|||
* Hide the `template` element in IE, Safari, and Firefox < 22. |
|||
*/ |
|||
|
|||
[hidden], |
|||
template { |
|||
display: none; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Base |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* 1. Set default font family to sans-serif. |
|||
* 2. Prevent iOS text size adjust after orientation change, without disabling |
|||
* user zoom. |
|||
*/ |
|||
|
|||
html { |
|||
font-family: sans-serif; /* 1 */ |
|||
-ms-text-size-adjust: 100%; /* 2 */ |
|||
-webkit-text-size-adjust: 100%; /* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* Remove default margin. |
|||
*/ |
|||
|
|||
body { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Links |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove the gray background color from active links in IE 10. |
|||
*/ |
|||
|
|||
a { |
|||
background: transparent; |
|||
} |
|||
|
|||
/** |
|||
* Address `outline` inconsistency between Chrome and other browsers. |
|||
*/ |
|||
|
|||
a:focus { |
|||
outline: thin dotted; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability when focused and also mouse hovered in all browsers. |
|||
*/ |
|||
|
|||
a:active, |
|||
a:hover { |
|||
outline: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Typography |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address variable `h1` font-size and margin within `section` and `article` |
|||
* contexts in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
margin: 0.67em 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
abbr[title] { |
|||
border-bottom: 1px dotted; |
|||
} |
|||
|
|||
/** |
|||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
b, |
|||
strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
dfn { |
|||
font-style: italic; |
|||
} |
|||
|
|||
/** |
|||
* Address differences between Firefox and other browsers. |
|||
*/ |
|||
|
|||
hr { |
|||
-moz-box-sizing: content-box; |
|||
box-sizing: content-box; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9. |
|||
*/ |
|||
|
|||
mark { |
|||
background: #ff0; |
|||
color: #000; |
|||
} |
|||
|
|||
/** |
|||
* Correct font family set oddly in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
code, |
|||
kbd, |
|||
pre, |
|||
samp { |
|||
font-family: monospace, serif; |
|||
font-size: 1em; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability of pre-formatted text in all browsers. |
|||
*/ |
|||
|
|||
pre { |
|||
white-space: pre-wrap; |
|||
} |
|||
|
|||
/** |
|||
* Set consistent quote types. |
|||
*/ |
|||
|
|||
q { |
|||
quotes: "\201C" "\201D" "\2018" "\2019"; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent and variable font size in all browsers. |
|||
*/ |
|||
|
|||
small { |
|||
font-size: 80%; |
|||
} |
|||
|
|||
/** |
|||
* Prevent `sub` and `sup` affecting `line-height` in all browsers. |
|||
*/ |
|||
|
|||
sub, |
|||
sup { |
|||
font-size: 75%; |
|||
line-height: 0; |
|||
position: relative; |
|||
vertical-align: baseline; |
|||
} |
|||
|
|||
sup { |
|||
top: -0.5em; |
|||
} |
|||
|
|||
sub { |
|||
bottom: -0.25em; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Embedded content |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove border when inside `a` element in IE 8/9. |
|||
*/ |
|||
|
|||
img { |
|||
border: 0; |
|||
} |
|||
|
|||
/** |
|||
* Correct overflow displayed oddly in IE 9. |
|||
*/ |
|||
|
|||
svg:not(:root) { |
|||
overflow: hidden; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Figures |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address margin not present in IE 8/9 and Safari 5. |
|||
*/ |
|||
|
|||
figure { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Forms |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Define consistent border, margin, and padding. |
|||
*/ |
|||
|
|||
fieldset { |
|||
border: 1px solid #c0c0c0; |
|||
margin: 0 2px; |
|||
padding: 0.35em 0.625em 0.75em; |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct `color` not being inherited in IE 8/9. |
|||
* 2. Remove padding so people aren't caught out if they zero out fieldsets. |
|||
*/ |
|||
|
|||
legend { |
|||
border: 0; /* 1 */ |
|||
padding: 0; /* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct font family not being inherited in all browsers. |
|||
* 2. Correct font size not being inherited in all browsers. |
|||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
button, |
|||
input, |
|||
select, |
|||
textarea { |
|||
font-family: inherit; /* 1 */ |
|||
font-size: 100%; /* 2 */ |
|||
margin: 0; /* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in |
|||
* the UA stylesheet. |
|||
*/ |
|||
|
|||
button, |
|||
input { |
|||
line-height: normal; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent `text-transform` inheritance for `button` and `select`. |
|||
* All other form control elements do not inherit `text-transform` values. |
|||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. |
|||
* Correct `select` style inheritance in Firefox 4+ and Opera. |
|||
*/ |
|||
|
|||
button, |
|||
select { |
|||
text-transform: none; |
|||
} |
|||
|
|||
/** |
|||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` |
|||
* and `video` controls. |
|||
* 2. Correct inability to style clickable `input` types in iOS. |
|||
* 3. Improve usability and consistency of cursor style between image-type |
|||
* `input` and others. |
|||
*/ |
|||
|
|||
button, |
|||
html input[type="button"], /* 1 */ |
|||
input[type="reset"], |
|||
input[type="submit"] { |
|||
-webkit-appearance: button; /* 2 */ |
|||
cursor: pointer; /* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Re-set default cursor for disabled elements. |
|||
*/ |
|||
|
|||
button[disabled], |
|||
html input[disabled] { |
|||
cursor: default; |
|||
} |
|||
|
|||
/** |
|||
* 1. Address box sizing set to `content-box` in IE 8/9/10. |
|||
* 2. Remove excess padding in IE 8/9/10. |
|||
*/ |
|||
|
|||
input[type="checkbox"], |
|||
input[type="radio"] { |
|||
box-sizing: border-box; /* 1 */ |
|||
padding: 0; /* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. |
|||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome |
|||
* (include `-moz` to future-proof). |
|||
*/ |
|||
|
|||
input[type="search"] { |
|||
-webkit-appearance: textfield; /* 1 */ |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; /* 2 */ |
|||
box-sizing: content-box; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and search cancel button in Safari 5 and Chrome |
|||
* on OS X. |
|||
*/ |
|||
|
|||
input[type="search"]::-webkit-search-cancel-button, |
|||
input[type="search"]::-webkit-search-decoration { |
|||
-webkit-appearance: none; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and border in Firefox 4+. |
|||
*/ |
|||
|
|||
button::-moz-focus-inner, |
|||
input::-moz-focus-inner { |
|||
border: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
/** |
|||
* 1. Remove default vertical scrollbar in IE 8/9. |
|||
* 2. Improve readability and alignment in all browsers. |
|||
*/ |
|||
|
|||
textarea { |
|||
overflow: auto; /* 1 */ |
|||
vertical-align: top; /* 2 */ |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Tables |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove most spacing between table cells. |
|||
*/ |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0; |
|||
} |
@ -0,0 +1,74 @@ |
|||
@import "themes/default/global.variables"; |
|||
@import "reset.less"; |
|||
|
|||
/******************************* |
|||
Page |
|||
*******************************/ |
|||
|
|||
html, |
|||
body { |
|||
font-size: @fontSize; |
|||
} |
|||
|
|||
body { |
|||
background: @bodyBackground; |
|||
font-family: @fontFamily; |
|||
margin: 0px; |
|||
padding: 0px; |
|||
color: #555555; |
|||
min-width: 320px; |
|||
} |
|||
|
|||
/******************************* |
|||
Text |
|||
*******************************/ |
|||
|
|||
h1, |
|||
h2, |
|||
h3, |
|||
h4, |
|||
h5 { |
|||
margin: 1em 0em 1rem; |
|||
padding: 0em; |
|||
} |
|||
|
|||
p { |
|||
margin: 1em 0em; |
|||
} |
|||
p:first-child { |
|||
margin-top: 0em; |
|||
} |
|||
p:last-child { |
|||
margin-bottom: 0em; |
|||
} |
|||
|
|||
/*------------------- |
|||
Links |
|||
--------------------*/ |
|||
|
|||
a { |
|||
color: @linkColor; |
|||
text-decoration: @linkUnderline; |
|||
} |
|||
a:hover { |
|||
color: @linkHoverColor; |
|||
} |
|||
|
|||
|
|||
/******************************* |
|||
Highlighting |
|||
*******************************/ |
|||
|
|||
::-webkit-selection { |
|||
background-color: @highlightBackground; |
|||
color: @highlightColor; |
|||
} |
|||
::-moz-selection { |
|||
background-color: @highlightBackground; |
|||
color: @highlightColor; |
|||
} |
|||
::selection { |
|||
background-color: @highlightBackground; |
|||
color: @highlightColor; |
|||
} |
|||
|
@ -0,0 +1,4 @@ |
|||
/******************************* |
|||
Overrides |
|||
*******************************/ |
|||
|
@ -0,0 +1,39 @@ |
|||
/*------------------- |
|||
Button Variables |
|||
--------------------*/ |
|||
|
|||
/* Button Variables */ |
|||
@textTransform: none; |
|||
@fontWeight: normal; |
|||
@textColor: #333333; |
|||
|
|||
@borderRadius: 0.25em; |
|||
|
|||
@backgroundColor: #EEEEEE; |
|||
@backgroundImage: none; |
|||
@boxShadow: none; |
|||
|
|||
@hoverBackgroundColor: #DDDDDD; |
|||
@hoverBackgroundImage: none; |
|||
@hoverBoxShadow: none; |
|||
|
|||
@downBackgroundColor: #D0D0D0; |
|||
@downBackgroundImage: none; |
|||
@downBoxShadow: none; |
|||
|
|||
@activeBackgroundColor: #CCCCCC; |
|||
@activeBackgroundImage: none; |
|||
@activeBoxShadow: none; |
|||
|
|||
@verticalBoxShadow: none; |
|||
|
|||
@loadingBackgroundColor: #F0F0F0; |
|||
|
|||
@mini: 0.6rem; |
|||
@tiny: 0.7rem; |
|||
@small: 0.85rem; |
|||
@medium: 0.92rem; |
|||
@large: 1rem; |
|||
@big: 1.125rem; |
|||
@huge: 1.25rem; |
|||
@massive: 1.3rem; |
@ -0,0 +1,14 @@ |
|||
/* |
|||
* # Semantic UI |
|||
* Version: 0.12.0 |
|||
* http://github.com/jlukic/semantic-ui |
|||
* |
|||
* |
|||
* Copyright 2014 Contributors |
|||
* Released under the MIT license |
|||
* http://opensource.org/licenses/MIT |
|||
* |
|||
* Released: 01/13/2014 |
|||
*/ |
|||
|
|||
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0} |
@ -0,0 +1,14 @@ |
|||
/* |
|||
* # Semantic UI |
|||
* Version: 0.12.0 |
|||
* http://github.com/jlukic/semantic-ui |
|||
* |
|||
* |
|||
* Copyright 2014 Contributors |
|||
* Released under the MIT license |
|||
* http://opensource.org/licenses/MIT |
|||
* |
|||
* Released: 01/13/2014 |
|||
*/ |
|||
|
|||
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}html,body{font-size:15px}body{background:#fcfcfc;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;margin:0;padding:0;color:#555;min-width:320px}h1,h2,h3,h4,h5{margin:1em 0 1rem;padding:0}p{margin:1em 0}p:first-child{margin-top:0}p:last-child{margin-bottom:0}a{color:#009fda;text-decoration:none}a:hover{color:#00b2f3}::-webkit-selection{background-color:#ffc;color:rgba(0,0,0,.7)}::-moz-selection{background-color:#ffc;color:rgba(0,0,0,.7)}::selection{background-color:#ffc;color:rgba(0,0,0,.7)} |
@ -0,0 +1,4 @@ |
|||
/******************************* |
|||
Overrides |
|||
*******************************/ |
|||
|
@ -0,0 +1,39 @@ |
|||
/*------------------- |
|||
Button Variables |
|||
--------------------*/ |
|||
|
|||
/* Button Variables */ |
|||
@textTransform: none; |
|||
@fontWeight: normal; |
|||
@textColor: #333333; |
|||
|
|||
@borderRadius: 0.25em; |
|||
|
|||
@backgroundColor: #EEEEEE; |
|||
@backgroundImage: none; |
|||
@boxShadow: none; |
|||
|
|||
@hoverBackgroundColor: #DDDDDD; |
|||
@hoverBackgroundImage: none; |
|||
@hoverBoxShadow: none; |
|||
|
|||
@downBackgroundColor: #D0D0D0; |
|||
@downBackgroundImage: none; |
|||
@downBoxShadow: none; |
|||
|
|||
@activeBackgroundColor: #CCCCCC; |
|||
@activeBackgroundImage: none; |
|||
@activeBoxShadow: none; |
|||
|
|||
@verticalBoxShadow: none; |
|||
|
|||
@loadingBackgroundColor: #F0F0F0; |
|||
|
|||
@mini: 0.6rem; |
|||
@tiny: 0.7rem; |
|||
@small: 0.85rem; |
|||
@medium: 0.92rem; |
|||
@large: 1rem; |
|||
@big: 1.125rem; |
|||
@huge: 1.25rem; |
|||
@massive: 1.3rem; |
@ -0,0 +1,4 @@ |
|||
/******************************* |
|||
Overrides |
|||
*******************************/ |
|||
|
@ -0,0 +1,39 @@ |
|||
/*------------------- |
|||
Button Variables |
|||
--------------------*/ |
|||
|
|||
/* Button Variables */ |
|||
@textTransform: none; |
|||
@fontWeight: normal; |
|||
@textColor: #333333; |
|||
|
|||
@borderRadius: 0.25em; |
|||
|
|||
@backgroundColor: #EEEEEE; |
|||
@backgroundImage: none; |
|||
@boxShadow: none; |
|||
|
|||
@hoverBackgroundColor: #DDDDDD; |
|||
@hoverBackgroundImage: none; |
|||
@hoverBoxShadow: none; |
|||
|
|||
@downBackgroundColor: #D0D0D0; |
|||
@downBackgroundImage: none; |
|||
@downBoxShadow: none; |
|||
|
|||
@activeBackgroundColor: #CCCCCC; |
|||
@activeBackgroundImage: none; |
|||
@activeBoxShadow: none; |
|||
|
|||
@verticalBoxShadow: none; |
|||
|
|||
@loadingBackgroundColor: #F0F0F0; |
|||
|
|||
@mini: 0.6rem; |
|||
@tiny: 0.7rem; |
|||
@small: 0.85rem; |
|||
@medium: 0.92rem; |
|||
@large: 1rem; |
|||
@big: 1.125rem; |
|||
@huge: 1.25rem; |
|||
@massive: 1.3rem; |
@ -0,0 +1,425 @@ |
|||
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ |
|||
|
|||
/* ========================================================================== |
|||
HTML5 display definitions |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Correct %60block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
article, |
|||
aside, |
|||
details, |
|||
figcaption, |
|||
figure, |
|||
footer, |
|||
header, |
|||
hgroup, |
|||
main, |
|||
nav, |
|||
section, |
|||
summary { |
|||
display: block; |
|||
} |
|||
|
|||
/** |
|||
* Correct `inline-block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
audio, |
|||
canvas, |
|||
video { |
|||
display: inline-block; |
|||
} |
|||
|
|||
/** |
|||
* Prevent modern browsers from displaying `audio` without controls. |
|||
* Remove excess height in iOS 5 devices. |
|||
*/ |
|||
|
|||
audio:not([controls]) { |
|||
display: none; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address `[hidden]` styling not present in IE 8/9. |
|||
* Hide the `template` element in IE, Safari, and Firefox < 22. |
|||
*/ |
|||
|
|||
[hidden], |
|||
template { |
|||
display: none; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Base |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* 1. Set default font family to sans-serif. |
|||
* 2. Prevent iOS text size adjust after orientation change, without disabling |
|||
* user zoom. |
|||
*/ |
|||
|
|||
html { |
|||
font-family: sans-serif; |
|||
/* 1 */ |
|||
-ms-text-size-adjust: 100%; |
|||
/* 2 */ |
|||
-webkit-text-size-adjust: 100%; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* Remove default margin. |
|||
*/ |
|||
|
|||
body { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Links |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove the gray background color from active links in IE 10. |
|||
*/ |
|||
|
|||
a { |
|||
background: transparent; |
|||
} |
|||
|
|||
/** |
|||
* Address `outline` inconsistency between Chrome and other browsers. |
|||
*/ |
|||
|
|||
a:focus { |
|||
outline: thin dotted; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability when focused and also mouse hovered in all browsers. |
|||
*/ |
|||
|
|||
a:active, |
|||
a:hover { |
|||
outline: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Typography |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address variable `h1` font-size and margin within `section` and `article` |
|||
* contexts in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
margin: 0.67em 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
abbr[title] { |
|||
border-bottom: 1px dotted; |
|||
} |
|||
|
|||
/** |
|||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
b, |
|||
strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
dfn { |
|||
font-style: italic; |
|||
} |
|||
|
|||
/** |
|||
* Address differences between Firefox and other browsers. |
|||
*/ |
|||
|
|||
hr { |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; |
|||
box-sizing: content-box; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9. |
|||
*/ |
|||
|
|||
mark { |
|||
background: #ff0; |
|||
color: #000; |
|||
} |
|||
|
|||
/** |
|||
* Correct font family set oddly in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
code, |
|||
kbd, |
|||
pre, |
|||
samp { |
|||
font-family: monospace, serif; |
|||
font-size: 1em; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability of pre-formatted text in all browsers. |
|||
*/ |
|||
|
|||
pre { |
|||
white-space: pre-wrap; |
|||
} |
|||
|
|||
/** |
|||
* Set consistent quote types. |
|||
*/ |
|||
|
|||
q { |
|||
quotes: "\201C" "\201D" "\2018" "\2019"; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent and variable font size in all browsers. |
|||
*/ |
|||
|
|||
small { |
|||
font-size: 80%; |
|||
} |
|||
|
|||
/** |
|||
* Prevent `sub` and `sup` affecting `line-height` in all browsers. |
|||
*/ |
|||
|
|||
sub, |
|||
sup { |
|||
font-size: 75%; |
|||
line-height: 0; |
|||
position: relative; |
|||
vertical-align: baseline; |
|||
} |
|||
|
|||
sup { |
|||
top: -0.5em; |
|||
} |
|||
|
|||
sub { |
|||
bottom: -0.25em; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Embedded content |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove border when inside `a` element in IE 8/9. |
|||
*/ |
|||
|
|||
img { |
|||
border: 0; |
|||
} |
|||
|
|||
/** |
|||
* Correct overflow displayed oddly in IE 9. |
|||
*/ |
|||
|
|||
svg:not(:root) { |
|||
overflow: hidden; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Figures |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address margin not present in IE 8/9 and Safari 5. |
|||
*/ |
|||
|
|||
figure { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Forms |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Define consistent border, margin, and padding. |
|||
*/ |
|||
|
|||
fieldset { |
|||
border: 1px solid #c0c0c0; |
|||
margin: 0 2px; |
|||
padding: 0.35em 0.625em 0.75em; |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct `color` not being inherited in IE 8/9. |
|||
* 2. Remove padding so people aren't caught out if they zero out fieldsets. |
|||
*/ |
|||
|
|||
legend { |
|||
border: 0; |
|||
/* 1 */ |
|||
padding: 0; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct font family not being inherited in all browsers. |
|||
* 2. Correct font size not being inherited in all browsers. |
|||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
button, |
|||
input, |
|||
select, |
|||
textarea { |
|||
font-family: inherit; |
|||
/* 1 */ |
|||
font-size: 100%; |
|||
/* 2 */ |
|||
margin: 0; |
|||
/* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in |
|||
* the UA stylesheet. |
|||
*/ |
|||
|
|||
button, |
|||
input { |
|||
line-height: normal; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent `text-transform` inheritance for `button` and `select`. |
|||
* All other form control elements do not inherit `text-transform` values. |
|||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. |
|||
* Correct `select` style inheritance in Firefox 4+ and Opera. |
|||
*/ |
|||
|
|||
button, |
|||
select { |
|||
text-transform: none; |
|||
} |
|||
|
|||
/** |
|||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` |
|||
* and `video` controls. |
|||
* 2. Correct inability to style clickable `input` types in iOS. |
|||
* 3. Improve usability and consistency of cursor style between image-type |
|||
* `input` and others. |
|||
*/ |
|||
|
|||
button, |
|||
html input[type="button"], |
|||
input[type="reset"], |
|||
input[type="submit"] { |
|||
-webkit-appearance: button; |
|||
/* 2 */ |
|||
cursor: pointer; |
|||
/* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Re-set default cursor for disabled elements. |
|||
*/ |
|||
|
|||
button[disabled], |
|||
html input[disabled] { |
|||
cursor: default; |
|||
} |
|||
|
|||
/** |
|||
* 1. Address box sizing set to `content-box` in IE 8/9/10. |
|||
* 2. Remove excess padding in IE 8/9/10. |
|||
*/ |
|||
|
|||
input[type="checkbox"], |
|||
input[type="radio"] { |
|||
-webkit-box-sizing: border-box; |
|||
-moz-box-sizing: border-box; |
|||
box-sizing: border-box; |
|||
/* 1 */ |
|||
padding: 0; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. |
|||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome |
|||
* (include `-moz` to future-proof). |
|||
*/ |
|||
|
|||
input[type="search"] { |
|||
-webkit-appearance: textfield; |
|||
/* 1 */ |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; |
|||
/* 2 */ |
|||
box-sizing: content-box; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and search cancel button in Safari 5 and Chrome |
|||
* on OS X. |
|||
*/ |
|||
|
|||
input[type="search"]::-webkit-search-cancel-button, |
|||
input[type="search"]::-webkit-search-decoration { |
|||
-webkit-appearance: none; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and border in Firefox 4+. |
|||
*/ |
|||
|
|||
button::-moz-focus-inner, |
|||
input::-moz-focus-inner { |
|||
border: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
/** |
|||
* 1. Remove default vertical scrollbar in IE 8/9. |
|||
* 2. Improve readability and alignment in all browsers. |
|||
*/ |
|||
|
|||
textarea { |
|||
overflow: auto; |
|||
/* 1 */ |
|||
vertical-align: top; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Tables |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove most spacing between table cells. |
|||
*/ |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0; |
|||
} |
@ -0,0 +1,598 @@ |
|||
/******************************* |
|||
Global Variables |
|||
*******************************/ |
|||
|
|||
/*------------------- |
|||
Paths |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Page |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Fonts |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Icons |
|||
--------------------*/ |
|||
|
|||
/* Width of largest icon */ |
|||
|
|||
/******************************* |
|||
BG Colors |
|||
*******************************/ |
|||
|
|||
/******************************* |
|||
Colors |
|||
*******************************/ |
|||
|
|||
/*------------------- |
|||
Background |
|||
--------------------*/ |
|||
|
|||
/*--- Colors ---*/ |
|||
|
|||
/*--- Emotive ---*/ |
|||
|
|||
/*--- Neutrals ---*/ |
|||
|
|||
/*------------------- |
|||
Text Colors |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Brand Colors |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Borders |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Sizes |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Transitions |
|||
--------------------*/ |
|||
|
|||
/******************************* |
|||
States |
|||
*******************************/ |
|||
|
|||
/*------------------- |
|||
Disabled |
|||
--------------------*/ |
|||
|
|||
/*------------------- |
|||
Hover |
|||
--------------------*/ |
|||
|
|||
/*--- Colors ---*/ |
|||
|
|||
/*--- Emotive ---*/ |
|||
|
|||
/*--- Neutrals ---*/ |
|||
|
|||
/*------------------- |
|||
Down (:active) |
|||
--------------------*/ |
|||
|
|||
/*--- Colors ---*/ |
|||
|
|||
/*--- Emotive ---*/ |
|||
|
|||
/*--- Neutrals ---*/ |
|||
|
|||
/*------------------- |
|||
Active |
|||
--------------------*/ |
|||
|
|||
/*--- Standard ---*/ |
|||
|
|||
/*--- Emotive ---*/ |
|||
|
|||
/*--- Neutrals ---*/ |
|||
|
|||
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ |
|||
|
|||
/* ========================================================================== |
|||
HTML5 display definitions |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Correct %60block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
article, |
|||
aside, |
|||
details, |
|||
figcaption, |
|||
figure, |
|||
footer, |
|||
header, |
|||
hgroup, |
|||
main, |
|||
nav, |
|||
section, |
|||
summary { |
|||
display: block; |
|||
} |
|||
|
|||
/** |
|||
* Correct `inline-block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
audio, |
|||
canvas, |
|||
video { |
|||
display: inline-block; |
|||
} |
|||
|
|||
/** |
|||
* Prevent modern browsers from displaying `audio` without controls. |
|||
* Remove excess height in iOS 5 devices. |
|||
*/ |
|||
|
|||
audio:not([controls]) { |
|||
display: none; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address `[hidden]` styling not present in IE 8/9. |
|||
* Hide the `template` element in IE, Safari, and Firefox < 22. |
|||
*/ |
|||
|
|||
[hidden], |
|||
template { |
|||
display: none; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Base |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* 1. Set default font family to sans-serif. |
|||
* 2. Prevent iOS text size adjust after orientation change, without disabling |
|||
* user zoom. |
|||
*/ |
|||
|
|||
html { |
|||
font-family: sans-serif; |
|||
/* 1 */ |
|||
-ms-text-size-adjust: 100%; |
|||
/* 2 */ |
|||
-webkit-text-size-adjust: 100%; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* Remove default margin. |
|||
*/ |
|||
|
|||
body { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Links |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove the gray background color from active links in IE 10. |
|||
*/ |
|||
|
|||
a { |
|||
background: transparent; |
|||
} |
|||
|
|||
/** |
|||
* Address `outline` inconsistency between Chrome and other browsers. |
|||
*/ |
|||
|
|||
a:focus { |
|||
outline: thin dotted; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability when focused and also mouse hovered in all browsers. |
|||
*/ |
|||
|
|||
a:active, |
|||
a:hover { |
|||
outline: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Typography |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address variable `h1` font-size and margin within `section` and `article` |
|||
* contexts in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
margin: 0.67em 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
abbr[title] { |
|||
border-bottom: 1px dotted; |
|||
} |
|||
|
|||
/** |
|||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
b, |
|||
strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
dfn { |
|||
font-style: italic; |
|||
} |
|||
|
|||
/** |
|||
* Address differences between Firefox and other browsers. |
|||
*/ |
|||
|
|||
hr { |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; |
|||
box-sizing: content-box; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9. |
|||
*/ |
|||
|
|||
mark { |
|||
background: #ff0; |
|||
color: #000; |
|||
} |
|||
|
|||
/** |
|||
* Correct font family set oddly in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
code, |
|||
kbd, |
|||
pre, |
|||
samp { |
|||
font-family: monospace, serif; |
|||
font-size: 1em; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability of pre-formatted text in all browsers. |
|||
*/ |
|||
|
|||
pre { |
|||
white-space: pre-wrap; |
|||
} |
|||
|
|||
/** |
|||
* Set consistent quote types. |
|||
*/ |
|||
|
|||
q { |
|||
quotes: "\201C" "\201D" "\2018" "\2019"; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent and variable font size in all browsers. |
|||
*/ |
|||
|
|||
small { |
|||
font-size: 80%; |
|||
} |
|||
|
|||
/** |
|||
* Prevent `sub` and `sup` affecting `line-height` in all browsers. |
|||
*/ |
|||
|
|||
sub, |
|||
sup { |
|||
font-size: 75%; |
|||
line-height: 0; |
|||
position: relative; |
|||
vertical-align: baseline; |
|||
} |
|||
|
|||
sup { |
|||
top: -0.5em; |
|||
} |
|||
|
|||
sub { |
|||
bottom: -0.25em; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Embedded content |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove border when inside `a` element in IE 8/9. |
|||
*/ |
|||
|
|||
img { |
|||
border: 0; |
|||
} |
|||
|
|||
/** |
|||
* Correct overflow displayed oddly in IE 9. |
|||
*/ |
|||
|
|||
svg:not(:root) { |
|||
overflow: hidden; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Figures |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address margin not present in IE 8/9 and Safari 5. |
|||
*/ |
|||
|
|||
figure { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Forms |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Define consistent border, margin, and padding. |
|||
*/ |
|||
|
|||
fieldset { |
|||
border: 1px solid #c0c0c0; |
|||
margin: 0 2px; |
|||
padding: 0.35em 0.625em 0.75em; |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct `color` not being inherited in IE 8/9. |
|||
* 2. Remove padding so people aren't caught out if they zero out fieldsets. |
|||
*/ |
|||
|
|||
legend { |
|||
border: 0; |
|||
/* 1 */ |
|||
padding: 0; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct font family not being inherited in all browsers. |
|||
* 2. Correct font size not being inherited in all browsers. |
|||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
button, |
|||
input, |
|||
select, |
|||
textarea { |
|||
font-family: inherit; |
|||
/* 1 */ |
|||
font-size: 100%; |
|||
/* 2 */ |
|||
margin: 0; |
|||
/* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in |
|||
* the UA stylesheet. |
|||
*/ |
|||
|
|||
button, |
|||
input { |
|||
line-height: normal; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent `text-transform` inheritance for `button` and `select`. |
|||
* All other form control elements do not inherit `text-transform` values. |
|||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. |
|||
* Correct `select` style inheritance in Firefox 4+ and Opera. |
|||
*/ |
|||
|
|||
button, |
|||
select { |
|||
text-transform: none; |
|||
} |
|||
|
|||
/** |
|||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` |
|||
* and `video` controls. |
|||
* 2. Correct inability to style clickable `input` types in iOS. |
|||
* 3. Improve usability and consistency of cursor style between image-type |
|||
* `input` and others. |
|||
*/ |
|||
|
|||
button, |
|||
html input[type="button"], |
|||
input[type="reset"], |
|||
input[type="submit"] { |
|||
-webkit-appearance: button; |
|||
/* 2 */ |
|||
cursor: pointer; |
|||
/* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Re-set default cursor for disabled elements. |
|||
*/ |
|||
|
|||
button[disabled], |
|||
html input[disabled] { |
|||
cursor: default; |
|||
} |
|||
|
|||
/** |
|||
* 1. Address box sizing set to `content-box` in IE 8/9/10. |
|||
* 2. Remove excess padding in IE 8/9/10. |
|||
*/ |
|||
|
|||
input[type="checkbox"], |
|||
input[type="radio"] { |
|||
-webkit-box-sizing: border-box; |
|||
-moz-box-sizing: border-box; |
|||
box-sizing: border-box; |
|||
/* 1 */ |
|||
padding: 0; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. |
|||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome |
|||
* (include `-moz` to future-proof). |
|||
*/ |
|||
|
|||
input[type="search"] { |
|||
-webkit-appearance: textfield; |
|||
/* 1 */ |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; |
|||
/* 2 */ |
|||
box-sizing: content-box; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and search cancel button in Safari 5 and Chrome |
|||
* on OS X. |
|||
*/ |
|||
|
|||
input[type="search"]::-webkit-search-cancel-button, |
|||
input[type="search"]::-webkit-search-decoration { |
|||
-webkit-appearance: none; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and border in Firefox 4+. |
|||
*/ |
|||
|
|||
button::-moz-focus-inner, |
|||
input::-moz-focus-inner { |
|||
border: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
/** |
|||
* 1. Remove default vertical scrollbar in IE 8/9. |
|||
* 2. Improve readability and alignment in all browsers. |
|||
*/ |
|||
|
|||
textarea { |
|||
overflow: auto; |
|||
/* 1 */ |
|||
vertical-align: top; |
|||
/* 2 */ |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Tables |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove most spacing between table cells. |
|||
*/ |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0; |
|||
} |
|||
|
|||
/******************************* |
|||
Page |
|||
*******************************/ |
|||
|
|||
html, |
|||
body { |
|||
font-size: 15px; |
|||
} |
|||
|
|||
body { |
|||
background: #fcfcfc; |
|||
font-family: Open Sans, Helvetica Neue, Helvetica, Arial, sans-serif; |
|||
margin: 0px; |
|||
padding: 0px; |
|||
color: #555555; |
|||
min-width: 320px; |
|||
} |
|||
|
|||
/******************************* |
|||
Text |
|||
*******************************/ |
|||
|
|||
h1, |
|||
h2, |
|||
h3, |
|||
h4, |
|||
h5 { |
|||
margin: 1em 0em 1rem; |
|||
padding: 0em; |
|||
} |
|||
|
|||
p { |
|||
margin: 1em 0em; |
|||
} |
|||
|
|||
p:first-child { |
|||
margin-top: 0em; |
|||
} |
|||
|
|||
p:last-child { |
|||
margin-bottom: 0em; |
|||
} |
|||
|
|||
/*------------------- |
|||
Links |
|||
--------------------*/ |
|||
|
|||
a { |
|||
color: #009fda; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
a:hover { |
|||
color: #00b2f3; |
|||
} |
|||
|
|||
/******************************* |
|||
Highlighting |
|||
*******************************/ |
|||
|
|||
::-webkit-selection { |
|||
background-color: #ffffcc; |
|||
color: rgba(0, 0, 0, 0.7); |
|||
} |
|||
|
|||
::-moz-selection { |
|||
background-color: #ffffcc; |
|||
color: rgba(0, 0, 0, 0.7); |
|||
} |
|||
|
|||
::selection { |
|||
background-color: #ffffcc; |
|||
color: rgba(0, 0, 0, 0.7); |
|||
} |
@ -0,0 +1,4 @@ |
|||
/******************************* |
|||
Overrides |
|||
*******************************/ |
|||
|
@ -0,0 +1,39 @@ |
|||
/*------------------- |
|||
Button Variables |
|||
--------------------*/ |
|||
|
|||
/* Button Variables */ |
|||
@textTransform: none; |
|||
@fontWeight: normal; |
|||
@textColor: #333333; |
|||
|
|||
@borderRadius: 0.25em; |
|||
|
|||
@backgroundColor: #EEEEEE; |
|||
@backgroundImage: none; |
|||
@boxShadow: none; |
|||
|
|||
@hoverBackgroundColor: #DDDDDD; |
|||
@hoverBackgroundImage: none; |
|||
@hoverBoxShadow: none; |
|||
|
|||
@downBackgroundColor: #D0D0D0; |
|||
@downBackgroundImage: none; |
|||
@downBoxShadow: none; |
|||
|
|||
@activeBackgroundColor: #CCCCCC; |
|||
@activeBackgroundImage: none; |
|||
@activeBoxShadow: none; |
|||
|
|||
@verticalBoxShadow: none; |
|||
|
|||
@loadingBackgroundColor: #F0F0F0; |
|||
|
|||
@mini: 0.6rem; |
|||
@tiny: 0.7rem; |
|||
@small: 0.85rem; |
|||
@medium: 0.92rem; |
|||
@large: 1rem; |
|||
@big: 1.125rem; |
|||
@huge: 1.25rem; |
|||
@massive: 1.3rem; |
Write
Preview
Loading…
Cancel
Save