foundation-sass 2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.mkdn +70 -0
- data/lib/foundation-sass.rb +9 -0
- data/stylesheets/_foundation-sass.sass +1 -0
- data/templates/project/MIT-LICENSE.txt +20 -0
- data/templates/project/config.rb +33 -0
- data/templates/project/humans.txt +8 -0
- data/templates/project/images/misc/button-gloss.png +0 -0
- data/templates/project/images/misc/button-overlay.png +0 -0
- data/templates/project/images/misc/custom-form-sprites.png +0 -0
- data/templates/project/images/misc/input-bg.png +0 -0
- data/templates/project/images/misc/modal-gloss.png +0 -0
- data/templates/project/images/misc/table-sorter.png +0 -0
- data/templates/project/images/orbit/bullets.jpg +0 -0
- data/templates/project/images/orbit/left-arrow.png +0 -0
- data/templates/project/images/orbit/loading.gif +0 -0
- data/templates/project/images/orbit/mask-black.png +0 -0
- data/templates/project/images/orbit/pause-black.png +0 -0
- data/templates/project/images/orbit/right-arrow.png +0 -0
- data/templates/project/images/orbit/rotator-black.png +0 -0
- data/templates/project/images/orbit/timer-black.png +0 -0
- data/templates/project/index.html +151 -0
- data/templates/project/javascripts/app.js +43 -0
- data/templates/project/javascripts/forms.jquery.js +58 -0
- data/templates/project/javascripts/jquery.customforms.js +168 -0
- data/templates/project/javascripts/jquery.min.js +4 -0
- data/templates/project/javascripts/jquery.orbit-1.3.0.js +597 -0
- data/templates/project/javascripts/jquery.placeholder.min.js +2 -0
- data/templates/project/javascripts/jquery.reveal.js +126 -0
- data/templates/project/manifest.rb +75 -0
- data/templates/project/robots.txt +4 -0
- data/templates/project/sass/app.sass +6 -0
- data/templates/project/sass/forms.sass +189 -0
- data/templates/project/sass/globals.sass +128 -0
- data/templates/project/sass/grid.sass +159 -0
- data/templates/project/sass/ie.sass +11 -0
- data/templates/project/sass/includes/_colors.sass +8 -0
- data/templates/project/sass/includes/_mixins.sass +32 -0
- data/templates/project/sass/includes/_settings.sass +5 -0
- data/templates/project/sass/mobile.sass +215 -0
- data/templates/project/sass/orbit.sass +156 -0
- data/templates/project/sass/reveal.sass +86 -0
- data/templates/project/sass/typography.sass +130 -0
- data/templates/project/sass/ui.sass +331 -0
- data/templates/project/stylesheets/app.css +1 -0
- data/templates/project/stylesheets/forms.css +70 -0
- data/templates/project/stylesheets/globals.css +69 -0
- data/templates/project/stylesheets/grid.css +66 -0
- data/templates/project/stylesheets/ie.css +2 -0
- data/templates/project/stylesheets/mobile.css +76 -0
- data/templates/project/stylesheets/orbit.css +45 -0
- data/templates/project/stylesheets/reveal.css +24 -0
- data/templates/project/stylesheets/typography.css +57 -0
- data/templates/project/stylesheets/ui.css +110 -0
- metadata +109 -0
@@ -0,0 +1 @@
|
|
1
|
+
/* Artfully masterminded by ZURB */
|
@@ -0,0 +1,70 @@
|
|
1
|
+
/* Artfully masterminded by ZURB :: Make sure to include app.js if using inline label inputs */
|
2
|
+
/* Standard Forms */
|
3
|
+
form { margin: 0 0 18px; }
|
4
|
+
form label { display: block; font-size: 13px; font-size: 1.3rem; line-height: 18px; cursor: pointer; margin-bottom: 9px; }
|
5
|
+
|
6
|
+
input.input-text, textarea { border-right: 1px solid #bbbbbb; border-bottom: 1px solid #bbbbbb; }
|
7
|
+
|
8
|
+
input.input-text, textarea, select { display: block; margin-bottom: 9px; }
|
9
|
+
|
10
|
+
label + input.input-text, label + textarea, label + select, label + div.dropdown, select + div.dropdown { margin-top: -9px; }
|
11
|
+
|
12
|
+
/* Text input and textarea font and padding */
|
13
|
+
input.input-text, textarea { font-size: 13px; font-size: 1.3rem; padding: 4px 3px 2px; outline: none !important; background: white; }
|
14
|
+
input.input-text.oversize, textarea.oversize { font-size: 18px !important; font-size: 1.8rem !important; padding: 4px 5px !important; }
|
15
|
+
input.input-text:focus, textarea:focus { background: #f9f9f9; }
|
16
|
+
|
17
|
+
/* Inlined Label Style */
|
18
|
+
input .placeholder, textarea .placeholder { color: #888888; }
|
19
|
+
|
20
|
+
/* Text input and textarea sizes */
|
21
|
+
input.input-text { width: 254px; }
|
22
|
+
|
23
|
+
textarea { width: 254px; }
|
24
|
+
|
25
|
+
input.small, textarea.small { width: 134px; }
|
26
|
+
input.medium, textarea.medium { width: 254px; }
|
27
|
+
input.large, textarea.large { width: 434px; }
|
28
|
+
|
29
|
+
/* Fieldsets */
|
30
|
+
form fieldset { padding: 9px 9px 2px 9px; border: solid 1px #dddddd; margin: 18px 0; }
|
31
|
+
|
32
|
+
/* Errors */
|
33
|
+
input.input-text.red { border-color: red; background-color: rgba(255, 0, 0, 0.15); }
|
34
|
+
|
35
|
+
label.red { color: red; }
|
36
|
+
|
37
|
+
small.error { margin-top: -6px; display: block; margin-bottom: 9px; font-size: 11px; font-size: 1.1rem; color: red; width: 260px; }
|
38
|
+
|
39
|
+
.small + .error { width: 140px; }
|
40
|
+
|
41
|
+
.medium + .error { width: 260px; }
|
42
|
+
|
43
|
+
.large + .error { width: 440px; }
|
44
|
+
|
45
|
+
/* Nicer Forms */
|
46
|
+
form.nice input.input-text, form.nice textarea { border: solid 1px #bbbbbb; -moz-border-radius: 2px; -webkit-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; font-size: 13px; font-size: 1.3rem; padding: 6px 3px 4px; outline: none !important; background: url('../images/misc/input-bg.png?1296761857') white; }
|
47
|
+
form.nice input.input-text:focus, form.nice textarea:focus { background-color: #f9f9f9; }
|
48
|
+
form.nice input.input-text fieldset, form.nice textarea fieldset { -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
|
49
|
+
form.nice small.error { padding: 6px 4px; border: solid 0px red; border-width: 0 1px 1px 1px; margin-top: -10px; background: red; color: white; font-size: 12px; font-size: 1.2rem; font-weight: bold; -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; -o-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; -o-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; }
|
50
|
+
form.nice .small + .error { width: 132px; }
|
51
|
+
form.nice .medium + .error { width: 252px; }
|
52
|
+
form.nice .large + .error { width: 432px; }
|
53
|
+
|
54
|
+
/* Custom Forms */
|
55
|
+
form.custom span.custom { display: inline-block; width: 14px; height: 14px; position: relative; top: 2px; border: solid 1px #cccccc; background: url('../images/misc/custom-form-sprites.png?1299474407') 0 0 no-repeat; }
|
56
|
+
form.custom span.custom.radio { -moz-border-radius: 7px; -webkit-border-radius: 7px; -o-border-radius: 7px; border-radius: 7px; }
|
57
|
+
form.custom span.custom.radio.checked { background-position: 0 -14px; }
|
58
|
+
form.custom span.custom.checkbox.checked { background-position: 0 -28px; }
|
59
|
+
form.custom div.custom.dropdown { position: relative; display: inline-block; width: auto; height: 28px; margin-bottom: 9px; }
|
60
|
+
form.custom div.custom.dropdown a.current { display: block; width: auto; line-height: 26px; padding: 0 38px 0 6px; border: solid 1px #dddddd; color: #141414; }
|
61
|
+
form.custom div.custom.dropdown a.selector { position: absolute; width: 26px; height: 26px; display: block; background: url('../images/misc/custom-form-sprites.png?1299474407') -14px 0 no-repeat; right: 0px; top: 0px; border: solid 1px #dddddd; }
|
62
|
+
form.custom div.custom.dropdown ul { position: absolute; width: auto; display: none; margin: 0; left: 0; top: 27px; margin: 0; padding: 0; background: rgba(255, 255, 255, 0.9); border: solid 1px #dddddd; z-index: 10; }
|
63
|
+
form.custom div.custom.dropdown ul.show { display: block; }
|
64
|
+
form.custom div.custom.dropdown ul li { cursor: pointer; padding: 3px 38px 3px 6px; margin: 0; }
|
65
|
+
form.custom div.custom.dropdown ul li.selected { background: url('../images/misc/custom-form-sprites.png?1299474407') right -52px no-repeat; }
|
66
|
+
form.custom div.custom.dropdown ul li.selected:hover { background: url('../images/misc/custom-form-sprites.png?1299474407') #00a6fc right -78px no-repeat; }
|
67
|
+
form.custom div.custom.dropdown ul li:hover { background-color: #00a6fc; color: white; }
|
68
|
+
form.custom div.custom.dropdown:hover a.selector { background-position: -14px -26px; }
|
69
|
+
form.custom div.custom.dropdown.open ul { display: block; }
|
70
|
+
form.custom div.custom.dropdown.open a.selector { background-position: -14px -26px; }
|
@@ -0,0 +1,69 @@
|
|
1
|
+
/* Artfully masterminded by ZURB */
|
2
|
+
/* Table of Contents */
|
3
|
+
/* :: Reset & Standards */
|
4
|
+
/* :: Links */
|
5
|
+
/* :: Lists */
|
6
|
+
/* :: Tables */
|
7
|
+
/* :: Misc */
|
8
|
+
/* Global Reset & Standards */
|
9
|
+
/* Eric Meyer's CSS Reset :: http://meyerweb.com/eric/tools/css/reset/ :: v2.0 | 20110126 :: License: none (public domain) */
|
10
|
+
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font: inherit; vertical-align: baseline; }
|
11
|
+
|
12
|
+
html { font-size: 62.5%; }
|
13
|
+
|
14
|
+
/* HTML 5 display-role reset for older browsers */
|
15
|
+
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
|
16
|
+
|
17
|
+
body { line-height: 1; }
|
18
|
+
|
19
|
+
ol, ul { list-style: none; }
|
20
|
+
|
21
|
+
blockquote, q { quotes: none; }
|
22
|
+
blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; }
|
23
|
+
|
24
|
+
table { border-collapse: collapse; border-spacing: 0; }
|
25
|
+
|
26
|
+
body { background: white; font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-size: 13px; font-size: 1.3rem; -webkit-font-smoothing: antialiased; line-height: 18px; color: #555555; position: relative; }
|
27
|
+
|
28
|
+
/* Links */
|
29
|
+
a { color: #00a6fc; text-decoration: none; outline: 0; line-height: inherit; }
|
30
|
+
a:hover { color: #30b8ff; }
|
31
|
+
|
32
|
+
p a, p a:visited { line-height: inherit; }
|
33
|
+
|
34
|
+
/* Lists */
|
35
|
+
ul, ol { margin-bottom: 18px; }
|
36
|
+
|
37
|
+
ul { list-style: none outside; }
|
38
|
+
ul.square { list-style: square outside; }
|
39
|
+
ul.circle { list-style: circle outside; }
|
40
|
+
ul.disc { list-style: disc outside; }
|
41
|
+
|
42
|
+
ol { list-style: decimal; }
|
43
|
+
|
44
|
+
ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
|
45
|
+
|
46
|
+
ul ul, ol ol { margin: 4px 0 5px 30px; }
|
47
|
+
|
48
|
+
li { margin-bottom: 12px; }
|
49
|
+
|
50
|
+
ul.large li { line-height: 21px; }
|
51
|
+
|
52
|
+
/* Tables */
|
53
|
+
table { background: white; -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; width: 100%; margin: 0 0 18px; border: solid 1px #dddddd; }
|
54
|
+
table thead { background: #f5f5f5; }
|
55
|
+
table thead tr th { font-size: 12px; font-size: 1.2rem; line-height: 18px; text-align: left; padding: 8px 10px 9px; font-size: 14px; font-size: 1.4rem; font-weight: bold; color: #222222; }
|
56
|
+
table thead tr th:first-child { border-left: none; }
|
57
|
+
table thead tr th:last-child { border-right: none; }
|
58
|
+
table tbody tr.even, table tbody tr.alt { background: #f9f9f9; }
|
59
|
+
table tbody tr:nth-child(even) { background: #f9f9f9; }
|
60
|
+
table tbody tr td { font-size: 12px; font-size: 1.2rem; line-height: 18px; text-align: left; color: #333333; padding: 9px 10px; vertical-align: top; border: none; }
|
61
|
+
|
62
|
+
/* Misc */
|
63
|
+
.left { float: left; }
|
64
|
+
|
65
|
+
.right { float: right; }
|
66
|
+
|
67
|
+
.hide { display: none; }
|
68
|
+
|
69
|
+
.highlight { background: yellow; }
|
@@ -0,0 +1,66 @@
|
|
1
|
+
/* Arfully Masterminded by ZURB */
|
2
|
+
/* Grid :: This is the mobile-friendly, responsive grid that lets Foundation work much of its magic. */
|
3
|
+
.container { padding: 0 20px; }
|
4
|
+
|
5
|
+
.row { width: 100%; max-width: 980px; min-width: 727px; margin: 0 auto; }
|
6
|
+
.row .row { min-width: 0px; }
|
7
|
+
|
8
|
+
.column, .columns { margin-left: 4.4%; float: left; min-height: 1px; position: relative; }
|
9
|
+
.column:first-child, .columns:first-child { margin-left: 0; }
|
10
|
+
|
11
|
+
.row .one.columns { width: 4.3%; }
|
12
|
+
.row .two.columns { width: 13%; }
|
13
|
+
.row .three.columns { width: 21.7%; }
|
14
|
+
.row .four.columns { width: 30.4%; }
|
15
|
+
.row .five.columns { width: 39.1%; }
|
16
|
+
.row .six.columns { width: 47.8%; }
|
17
|
+
.row .seven.columns { width: 56.5%; }
|
18
|
+
.row .eight.columns { width: 65.2%; }
|
19
|
+
.row .nine.columns { width: 73.9%; }
|
20
|
+
.row .ten.columns { width: 82.6%; }
|
21
|
+
.row .eleven.columns { width: 91.3%; }
|
22
|
+
.row .twelve.columns { width: 100%; }
|
23
|
+
.row .offset-by-one { margin-left: 13.1%; }
|
24
|
+
.row .offset-by-one:first-child { margin-left: 8.7%; }
|
25
|
+
.row .offset-by-two { margin-left: 21.8%; }
|
26
|
+
.row .offset-by-two:first-child { margin-left: 17.4%; }
|
27
|
+
.row .offset-by-three { margin-left: 30.5%; }
|
28
|
+
.row .offset-by-three:first-child { margin-left: 26.1%; }
|
29
|
+
.row .offset-by-four { margin-left: 39.2%; }
|
30
|
+
.row .offset-by-four:first-child { margin-left: 34.8%; }
|
31
|
+
.row .offset-by-five { margin-left: 47.9%; }
|
32
|
+
.row .offset-by-five:first-child { margin-left: 43.5%; }
|
33
|
+
.row .offset-by-six { margin-left: 56.6%; }
|
34
|
+
.row .offset-by-six:first-child { margin-left: 52.2%; }
|
35
|
+
.row .offset-by-seven { margin-left: 65.3%; }
|
36
|
+
.row .offset-by-seven:first-child { margin-left: 60.9%; }
|
37
|
+
.row .offset-by-eight { margin-left: 74%; }
|
38
|
+
.row .offset-by-eight:first-child { margin-left: 69.6%; }
|
39
|
+
.row .offset-by-nine { margin-left: 82.7%; }
|
40
|
+
.row .offset-by-nine:first-child { margin-left: 78.3%; }
|
41
|
+
.row .offset-by-ten { margin-left: 91.4%; }
|
42
|
+
.row .offset-by-ten:first-child { margin-left: 87%; }
|
43
|
+
|
44
|
+
img, object, embed { max-width: 100%; height: auto; }
|
45
|
+
|
46
|
+
img { -ms-interpolation-mode: bicubic; }
|
47
|
+
|
48
|
+
/* Nicolas Gallagher's micro clearfix */
|
49
|
+
.row:before, .row:after, .clearfix:before, .clearfix:after { content: ""; display: table; }
|
50
|
+
|
51
|
+
.row:after, .clearfix:after { clear: both; }
|
52
|
+
|
53
|
+
.row, .clearfix { zoom: 1; }
|
54
|
+
|
55
|
+
/* Blockgrids */
|
56
|
+
/* These are 2-up, 3-up, 4-up and 5-up ULs, suited for repeating block of content. Add 'mobile' to them to switch them just like the layout grid (one item per line) on phones */
|
57
|
+
.block-grid { display: block; overflow: hidden; }
|
58
|
+
.block-grid > li { display: block; height: auto; float: left; }
|
59
|
+
.block-grid.two-up { margin-left: -4%; }
|
60
|
+
.block-grid.two-up > li { margin-left: 4%; width: 46%; }
|
61
|
+
.block-grid.three-up { margin-left: -2%; }
|
62
|
+
.block-grid.three-up > li { margin-left: 2%; width: 31.3%; }
|
63
|
+
.block-grid.four-up { margin-left: -4%; }
|
64
|
+
.block-grid.four-up > li { margin-left: 4%; width: 23%; }
|
65
|
+
.block-grid.five-up { margin-left: -1.5%; }
|
66
|
+
.block-grid.five-up > li { margin-left: 1.5%; width: 18.5%; }
|
@@ -0,0 +1,76 @@
|
|
1
|
+
/* Mobile Grid Fixes */
|
2
|
+
/* Tablet screens */
|
3
|
+
@media only screen and (device-width: 768px), (device-width: 800px) { /* Currently unused */ }
|
4
|
+
@media only screen and (max-width: 767px) { body { -webkit-text-size-adjust: none; }
|
5
|
+
.row, body, .container { width: 100%; min-width: 0; margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
|
6
|
+
.row .row .column, .row .row .columns { padding: 0; }
|
7
|
+
.column, .columns { width: auto !important; float: none; margin-left: 0; margin-right: 0; padding-left: 20px; padding-right: 20px; }
|
8
|
+
.column:last-child, .columns:last-child { margin-right: 0; }
|
9
|
+
.offset-by-one, .offset-by-two, .offset-by-three, .offset-by-four, .offset-by-five, .offset-by-six, .offset-by-seven, .offset-by-eight, .offset-by-nine, .offset-by-ten, .offset-by-eleven, .centered { margin-left: 0% !important; } }
|
10
|
+
/* Mobile 4-column Grid */
|
11
|
+
.row .phone-one.column:first-child, .row .phone-two.column:first-child, .row .phone-three.column:first-child, .row .phone-four.column:first-child, .row .phone-one.columns:first-child, .row .phone-two.columns:first-child, .row .phone-three.columns:first-child, .row .phone-four.columns:first-child { margin-left: 0px; }
|
12
|
+
.row .phone-one.column, .row .phone-two.column, .row .phone-three.column, .row .phone-four.column, .row .phone-one.columns, .row .phone-two.columns, .row .phone-three.columns, .row .phone-four.columns { margin-left: 4.4%; float: left; min-height: 1px; position: relative; padding: 0; }
|
13
|
+
.row .phone-one.columns { width: 21.68% !important; }
|
14
|
+
.row .phone-two.columns { width: 47.8% !important; }
|
15
|
+
.row .phone-three.columns { width: 73.9% !important; }
|
16
|
+
.row .phone-four.columns { width: 100% !important; }
|
17
|
+
|
18
|
+
/* Block Grid */
|
19
|
+
@media only screen and (max-width: 767px) { .block-grid.mobile { margin-left: 0%; }
|
20
|
+
.block-grid.mobile li { float: none; width: 100%; margin-left: 0%; } }
|
21
|
+
/* Mobile Visibility Affordances */
|
22
|
+
.show-on-phones { display: none !important; }
|
23
|
+
|
24
|
+
.show-on-tablets { display: none !important; }
|
25
|
+
|
26
|
+
.show-on-desktops { display: block; }
|
27
|
+
|
28
|
+
.hide-on-phones { display: block !important; }
|
29
|
+
|
30
|
+
.hide-on-tablets { display: block !important; }
|
31
|
+
|
32
|
+
.hide-on-desktops { display: none; }
|
33
|
+
|
34
|
+
@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-width: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px) { .show-on-phones { display: block !important; }
|
35
|
+
.show-on-tablets { display: none !important; }
|
36
|
+
.show-on-desktops { display: block !important; }
|
37
|
+
.hide-on-phones { display: none !important; }
|
38
|
+
.hide-on-tablets { display: block !important; }
|
39
|
+
.hide-on-desktops { display: none !important; } }
|
40
|
+
@media only screen and (max-width: 767px) { .show-on-phones { display: none !important; }
|
41
|
+
.show-on-tablets { display: block !important; }
|
42
|
+
.show-on-desktops { display: block !important; }
|
43
|
+
.hide-on-phones { display: block !important; }
|
44
|
+
.hide-on-tablets { display: none !important; }
|
45
|
+
.hide-on-desktops { display: none !important; } }
|
46
|
+
/* Specific overrides for elements that require something other than display: block */
|
47
|
+
table.show-on-desktops { display: table !important; }
|
48
|
+
table.hide-on-phones { display: table !important; }
|
49
|
+
table.hide-on-tablets { display: table !important; }
|
50
|
+
|
51
|
+
@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px) { table.hide-on-phones { display: block !important; }
|
52
|
+
table.hide-on-desktops { display: block !important; }
|
53
|
+
table.show-on-tablets { display: block !important; } }
|
54
|
+
@media only screen and (max-width: 767px) { table.hide-on-tablets { display: block !important; }
|
55
|
+
table.hide-on-desktops { display: block !important; }
|
56
|
+
table.show-on-phones { display: block !important; } }
|
57
|
+
/* Forms */
|
58
|
+
@media only screen and (max-width: 767px) { input.input-text, input.input-text.oversize, textarea, form.nice input.input-text, form.nice input.input-text.oversize, form.nice textarea { display: block; width: 96%; padding: 6px 2% 4px; font-size: 18px; font-size: 1.8rem; }
|
59
|
+
form.nice input.input-text, form.nice input.input-text.oversize, form.nice textarea { -moz-border-radius: 2px; -webkit-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; }
|
60
|
+
form.nice small.error { padding: 6px 2%; display: block; }
|
61
|
+
form.nice .small + .error, form.nice .medium + .error, form.nice .large + .error { width: auto; } }
|
62
|
+
/* Buttons */
|
63
|
+
@media only screen and (max-width: 767px) { .button { display: block; }
|
64
|
+
button.button { width: 100%; padding-left: 0px; padding-right: 0px; } }
|
65
|
+
/* Tabs */
|
66
|
+
@media only screen and (max-width: 767px) { dl.tabs.mobile, dl.nice.tabs.mobile { width: auto; margin: 20px -20px 40px; height: auto; }
|
67
|
+
dl.tabs.mobile dt, dl.tabs.mobile dd, dl.nice.tabs.mobile dt, dl.nice.tabs.mobile dd { float: none; height: auto; }
|
68
|
+
dl.tabs.mobile dd a { display: block; width: auto; height: auto; padding: 18px 20px; line-height: 1; border: solid 0px #cccccc; border-width: 1px 0px 0px; margin: 0; color: #555555; background: #eeeeee; font-size: 15px; font-size: 1.5rem; }
|
69
|
+
dl.tabs.mobile dd a.active { height: auto; margin: 0; border-width: 1px 0px 0px; }
|
70
|
+
.nice.tabs.mobile { border-bottom: solid 1px #cccccc; height: auto; }
|
71
|
+
.nice.tabs.mobile dd a { padding: 18px 20px; border: none; border-left: none; border-right: none; border-top: solid 1px #cccccc; background: white; }
|
72
|
+
.nice.tabs.mobile dd a.active { border: none; background: #00a6fc; color: white; margin: 0; position: static; top: 0px; height: auto; }
|
73
|
+
.nice.tabs.mobile dd:first-child a.active { margin-bottom: 0px; }
|
74
|
+
dl.contained.mobile, dl.nice.contained.mobile { margin-bottom: 0; }
|
75
|
+
dl.contained.tabs.mobile dd a { padding: 18px 20px; }
|
76
|
+
dl.nice.contained.tabs.mobile dd a { padding: 18px 20px; } }
|
@@ -0,0 +1,45 @@
|
|
1
|
+
/* CSS for jQuery Orbit Plugin 1.2.3 :: www.ZURB.com/playground :: Copyright 2010, ZURB :: Free to use under the MIT license. :: http://www.opensource.org/licenses/mit-license.php */
|
2
|
+
/* PUT IN YOUR SLIDER ID AND SIZE TO MAKE LOAD BEAUTIFULLY */
|
3
|
+
#featured { width: 940px; height: 450px; background: black url('../images/orbit/loading.gif?1296761857') no-repeat center center; overflow: hidden; }
|
4
|
+
#featured > img, #featured > div, #featured > a { display: none; }
|
5
|
+
|
6
|
+
/* Container */
|
7
|
+
div.orbit-wrapper { width: 1px; height: 1px; position: relative; }
|
8
|
+
|
9
|
+
div.orbit { width: 1px; height: 1px; position: relative; overflow: hidden; }
|
10
|
+
div.orbit.with-bullets { margin-bottom: 40px; }
|
11
|
+
div.orbit > img { position: absolute; top: 0; left: 0; }
|
12
|
+
div.orbit > a { border: none; position: absolute; top: 0; left: 0; line-height: 0; display: none; }
|
13
|
+
|
14
|
+
/* Note: If your slider only uses content or anchors, you're going to want to put the width and height declarations on the ".orbit>div" and "div.orbit>a" tags in addition to just the .orbit-wrapper */
|
15
|
+
/* Timer */
|
16
|
+
div.timer { width: 40px; height: 40px; overflow: hidden; position: absolute; top: 10px; right: 10px; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; cursor: pointer; z-index: 1001; }
|
17
|
+
|
18
|
+
span.rotator { display: block; width: 40px; height: 40px; position: absolute; top: 0; left: -20px; background: url('../images/orbit/rotator-black.png?1296761857') no-repeat; z-index: 3; }
|
19
|
+
span.rotator.move { left: 0; }
|
20
|
+
|
21
|
+
span.mask { display: block; width: 20px; height: 40px; position: absolute; top: 0; right: 0; z-index: 2; overflow: hidden; }
|
22
|
+
span.mask.move { width: 40px; left: 0; background: url('../images/orbit/timer-black.png?1296761857') repeat 0 0; }
|
23
|
+
|
24
|
+
span.pause { display: block; width: 40px; height: 40px; position: absolute; top: 0; left: 0; background: url('../images/orbit/pause-black.png?1296761857') no-repeat; z-index: 4; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; }
|
25
|
+
span.pause.active { background: url('../images/orbit/pause-black.png?1296761857') no-repeat 0 -40px; }
|
26
|
+
|
27
|
+
div.timer:hover span.pause, span.pause.active { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); opacity: 1; }
|
28
|
+
|
29
|
+
/* Captions */
|
30
|
+
.orbit-caption { display: none; font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; }
|
31
|
+
|
32
|
+
.orbit-wrapper .orbit-caption { background: black; background: rgba(0, 0, 0, 0.6); z-index: 1000; color: white; text-align: center; padding: 7px 0; font-size: 13px; font-size: 1.3rem; position: absolute; right: 0; bottom: 0; width: 100%; }
|
33
|
+
|
34
|
+
/* Directional Nav */
|
35
|
+
div.slider-nav { display: block; }
|
36
|
+
div.slider-nav span { width: 78px; height: 100px; text-indent: -99999px; position: absolute; z-index: 1000; top: 50%; margin-top: -50px; cursor: pointer; }
|
37
|
+
div.slider-nav span.right { background: url('../images/orbit/right-arrow.png?1296761857'); right: 0; }
|
38
|
+
div.slider-nav span.left { background: url('../images/orbit/left-arrow.png?1296761857'); left: 0; }
|
39
|
+
|
40
|
+
/* Bullet Nav */
|
41
|
+
.orbit-bullets { position: absolute; z-index: 1000; list-style: none; bottom: -40px; left: 50%; margin-left: -50px; padding: 0; }
|
42
|
+
.orbit-bullets li { float: left; margin-left: 5px; cursor: pointer; color: #999999; text-indent: -99999px; background: url('../images/orbit/bullets.jpg?1296761857') no-repeat 4px 0; width: 13px; height: 12px; overflow: hidden; }
|
43
|
+
.orbit-bullets li.active { color: #222222; background-position: -8px 0; }
|
44
|
+
.orbit-bullets li.has-thumb { background: none; width: 100px; height: 75px; }
|
45
|
+
.orbit-bullets li.active.has-thumb { background-position: 0 0; border-top: solid 2px #141414; }
|
@@ -0,0 +1,24 @@
|
|
1
|
+
/* Reveal Modals */
|
2
|
+
.reveal-modal-bg { position: fixed; height: 100%; width: 100%; background: black; background: rgba(0, 0, 0, 0.8); z-index: 100; display: none; top: 0; left: 0; }
|
3
|
+
|
4
|
+
.reveal-modal { visibility: hidden; top: 100px; left: 50%; margin-left: -300px; width: 520px; background: #eeeeee url('../images/misc/modal-gloss.png?1296761857') no-repeat -200px -80px; position: absolute; z-index: 101; padding: 30px 40px 34px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }
|
5
|
+
.reveal-modal.small { width: 200px; margin-left: -140px; }
|
6
|
+
.reveal-modal.medium { width: 400px; margin-left: -240px; }
|
7
|
+
.reveal-modal.large { width: 600px; margin-left: -340px; }
|
8
|
+
.reveal-modal.xlarge { width: 800px; margin-left: -440px; }
|
9
|
+
.reveal-modal .close-reveal-modal { font-size: 22px; font-size: 2.2rem; line-height: 0.5; position: absolute; top: 8px; right: 11px; color: #aaaaaa; text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6); font-weight: bold; cursor: pointer; }
|
10
|
+
|
11
|
+
/* Mobile */
|
12
|
+
@media only screen and (device-width: 768px), (device-width: 800px) { .reveal-modal-bg { position: absolute; }
|
13
|
+
.reveal-modal.small, .reveal-modal.medium, .reveal-modal.large, .reveal-modal.xlarge { width: 60%; top: 30%; left: 15%; margin-left: 0px; padding: 5%; height: auto; } }
|
14
|
+
@media only screen and (max-width: 767px) { .reveal-modal-bg { position: absolute; }
|
15
|
+
.reveal-modal.small, .reveal-modal.medium, .reveal-modal.large, .reveal-modal.xlarge { width: 80%; top: 15%; left: 5%; margin-left: 0px; padding: 5%; height: auto; } }
|
16
|
+
/* NOTES */
|
17
|
+
/* Close button entity is × */
|
18
|
+
/* Example markup */
|
19
|
+
/* <div id="myModal" class="reveal-modal"> */
|
20
|
+
/* <h2>Awesome. I have it.</h2> */
|
21
|
+
/* <p class="lead">Your couch. I it's mine.</p> */
|
22
|
+
/* <p>Lorem ipsum dolor sit amet...</p> */
|
23
|
+
/* <a class="close-reveal-modal">×</a> */
|
24
|
+
/* </div> */
|
@@ -0,0 +1,57 @@
|
|
1
|
+
/* Typography */
|
2
|
+
h1, h2, h3, h4, h5, h6 { color: #181818; font-weight: bold; line-height: 1.25; }
|
3
|
+
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { color: #777777; }
|
4
|
+
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
|
5
|
+
|
6
|
+
h1 { font-size: 46px; font-size: 4.6rem; margin-bottom: 12px; }
|
7
|
+
|
8
|
+
h2 { font-size: 35px; font-size: 3.5rem; margin-bottom: 9px; }
|
9
|
+
|
10
|
+
h3 { font-size: 28px; font-size: 2.8rem; margin-bottom: 9px; }
|
11
|
+
|
12
|
+
h4 { font-size: 21px; font-size: 2.1rem; margin-bottom: 3px; }
|
13
|
+
|
14
|
+
h5 { font-size: 18px; font-size: 1.8rem; margin-bottom: 3px; font-weight: normal; }
|
15
|
+
|
16
|
+
h6 { font-size: 15px; font-size: 1.5rem; font-weight: normal; }
|
17
|
+
|
18
|
+
.subhead { color: #777777; font-weight: 300; margin-bottom: 24px; }
|
19
|
+
|
20
|
+
p { line-height: 17px; margin: 0 0 18px; }
|
21
|
+
p img { margin: 0; }
|
22
|
+
p.lead { font-size: 18px; font-size: 1.8rem; line-height: 24px; }
|
23
|
+
|
24
|
+
em, i { font-style: italic; line-height: inherit; }
|
25
|
+
|
26
|
+
strong, b { font-weight: bold; line-height: inherit; }
|
27
|
+
|
28
|
+
small { font-size: 60%; line-height: inherit; }
|
29
|
+
|
30
|
+
/* Mobile */
|
31
|
+
@media only screen and (max-width: 767px) { body, p { font-size: 15px; font-size: 1.5rem; line-height: 1.4; } }
|
32
|
+
/* Blockquotes */
|
33
|
+
blockquote { line-height: 20px; color: #777777; margin: 0 0 18px; padding: 9px 20px 0 19px; border-left: 1px solid #dddddd; }
|
34
|
+
blockquote p { line-height: 20px; color: #777777; }
|
35
|
+
blockquote cite { display: block; font-size: 12px; font-size: 1.2rem; color: #555555; }
|
36
|
+
blockquote cite:before { content: "/2014 /0020"; }
|
37
|
+
blockquote cite a, blockquote cite a:visited { color: #555555; }
|
38
|
+
|
39
|
+
hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 12px 0 18px; height: 0; }
|
40
|
+
|
41
|
+
abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px solid #dddddd; cursor: help; }
|
42
|
+
|
43
|
+
abbr { text-transform: none; }
|
44
|
+
|
45
|
+
/* Print styles. Inlined to avoid required HTTP connection: */ /* www.phpied.com/delay-loading-your-print-css/ */
|
46
|
+
/* Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com) */
|
47
|
+
@media print { * { background: transparent !important; color: #141414 !important; text-shadow: none !important; filter: none !important; -ms-filter: none !important; }
|
48
|
+
p a, p a:visited { color: #444444 !important; text-decoration: underline; }
|
49
|
+
p a[href]:after { content: " (" attr(href) ")"; }
|
50
|
+
abbr[title]:after { content: " (" attr(href) ")"; }
|
51
|
+
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
|
52
|
+
pre, blockquote { border: solid 1px #999999; page-break-inside: avoid; }
|
53
|
+
thead { display: table-header-group; }
|
54
|
+
tr, img { page-break-inside: avoid; }
|
55
|
+
@page { margin: 0.5cm; }
|
56
|
+
p, h2, h3 { orphans: 3; widows: 3; }
|
57
|
+
h2, h3 { page-break-after: avoid; } }
|
@@ -0,0 +1,110 @@
|
|
1
|
+
/* Table of Content */
|
2
|
+
/* :: Buttons */
|
3
|
+
/* :: Notices/Alerts */
|
4
|
+
/* :: tabs */
|
5
|
+
/* :: Pagination */
|
6
|
+
/* :: Lists */
|
7
|
+
/* :: Panels */
|
8
|
+
/* Buttons */
|
9
|
+
.button { background: #00a6fc; display: inline-block; text-align: center; padding: 9px 34px 11px; color: white; text-decoration: none; font-weight: bold; font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; line-height: 1; position: relative; cursor: pointer; border: none; }
|
10
|
+
.button.nice { background-color: #00a6fc; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0.2)), color-stop(50%, rgba(255, 255, 255, 0.2)), color-stop(51%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0))); background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%); background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%); background-image: -o-linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%); background-image: linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%); -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -o-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.28); border: solid 1px #008ed8; -moz-transition-property: background-color; -webkit-transition-property: background-color; -o-transition-property: background-color; transition-property: background-color; -moz-transition-duration: 0.15s; -webkit-transition-duration: 0.15s; -o-transition-duration: 0.15s; transition-duration: 0.15s; -moz-transition-timing-function: ease-in-out; -webkit-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; }
|
11
|
+
.button.radius { -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
|
12
|
+
.button.round { -moz-border-radius: 1000px; -webkit-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
|
13
|
+
.button.full-width { width: 100%; padding-left: 0 !important; padding-right: 0 !important; text-align: center; }
|
14
|
+
.button.left-align { text-align: left; text-indent: 12px; }
|
15
|
+
|
16
|
+
input[type=submit].button { -webkit-appearance: none; }
|
17
|
+
|
18
|
+
/* Sizes */
|
19
|
+
.button.small { font-size: 11px; font-size: 1.1rem; padding: 8px 20px 10px; width: auto; }
|
20
|
+
.button.medium { font-size: 13px; font-size: 1.3rem; width: auto; }
|
21
|
+
.button.large { font-size: 18px; font-size: 1.8rem; padding: 11px 48px 13px; width: auto; }
|
22
|
+
|
23
|
+
/* Colors */
|
24
|
+
.button.blue { background-color: #00a6fc; }
|
25
|
+
.button.red { background-color: #e91c21; }
|
26
|
+
.button.white { background-color: #e9e9e9; color: #333333; }
|
27
|
+
.button.black { background-color: #141414; }
|
28
|
+
|
29
|
+
/* Nice Colors */
|
30
|
+
.nice.button.blue { border: solid 1px #008ed8; }
|
31
|
+
.nice.button.red { border: solid 1px #cd1418; }
|
32
|
+
.nice.button.white { border: solid 1px #dbdbdb; text-shadow: none !important; }
|
33
|
+
.nice.button.black { border: solid 1px #020202; }
|
34
|
+
|
35
|
+
/* Hovers */
|
36
|
+
.button:hover { background-color: #0095e3; color: white; }
|
37
|
+
.button.blue:hover { background-color: #0095e3; }
|
38
|
+
.button.red:hover { background-color: #d7151a; }
|
39
|
+
.button.white:hover { background-color: #e0e0e0; color: #333333; }
|
40
|
+
.button.black:hover { background-color: #070707; }
|
41
|
+
|
42
|
+
/* Disabled */
|
43
|
+
.button.disabled, .button[disabled] { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; cursor: default; }
|
44
|
+
|
45
|
+
/* Alerts */
|
46
|
+
div.alert-box { display: block; padding: 6px 7px; font-weight: bold; font-size: 13px; font-size: 1.3rem; background: #eeeeee; border: 1px solid rgba(0, 0, 0, 0.1); margin-bottom: 12px; -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; text-shadow: 0 1px rgba(255, 255, 255, 0.9); position: relative; }
|
47
|
+
div.alert-box.success { background-color: #7fae00; color: white; text-shadow: 0 -1px rgba(0, 0, 0, 0.3); }
|
48
|
+
div.alert-box.warning { background-color: #c08c00; color: white; text-shadow: 0 -1px rgba(0, 0, 0, 0.3); }
|
49
|
+
div.alert-box.error { background-color: #c00000; color: white; text-shadow: 0 -1px rgba(0, 0, 0, 0.3); }
|
50
|
+
div.alert-box a.close { color: #141414; position: absolute; right: 4px; top: 0px; font-size: 18px; font-size: 1.8rem; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20); opacity: 0.2; padding: 4px; }
|
51
|
+
div.alert-box a.close:hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40); opacity: 0.4; }
|
52
|
+
|
53
|
+
/* Tabs */
|
54
|
+
dl.tabs { display: block; margin: 0 0 20px; padding: 0; height: 30px; border-bottom: solid 1px #dddddd; }
|
55
|
+
dl.tabs dt { display: block; width: auto; height: 30px; padding: 0px 9px 0px 20px; line-height: 30px; float: left; color: #999999; font-size: 11px; font-size: 1.1rem; text-transform: uppercase; cursor: default; }
|
56
|
+
dl.tabs dt:first-child { padding: 0 9px 0 0; }
|
57
|
+
dl.tabs dd { display: block; width: auto; height: 30px; padding: 0; float: left; }
|
58
|
+
dl.tabs dd a { display: block; width: auto; height: 29px; padding: 0 9px; line-height: 30px; border: solid 1px #dddddd; margin: 0 -1px 0 0; color: #555555; background: #eeeeee; }
|
59
|
+
dl.tabs dd a.active { background: white; border-width: 1px 1px 0px 1px; height: 30px; }
|
60
|
+
|
61
|
+
.nice.tabs { border-bottom: solid 1px #eeeeee; margin: 0 0 30px; height: 43px; }
|
62
|
+
.nice.tabs dd a { padding: 7px 18px 9px; font-size: 15px; font-size: 1.5rem; color: #555555; background: none; border: none; }
|
63
|
+
.nice.tabs dd a.active { font-weight: bold; color: #333333; background: white; border-left: 1px solid #eeeeee; border-right: 1px solid #eeeeee; border-top: 1px solid #00a6fc; margin: 0 10px; position: relative; top: -5px; }
|
64
|
+
.nice.tabs dd:first-child a.active { margin-left: 0; }
|
65
|
+
|
66
|
+
dl.tabs.vertical { height: auto; }
|
67
|
+
|
68
|
+
dl.tabs.vertical dt, dl.tabs.vertical dd, dl.nice.tabs.vertical dt, dl.nice.tabs.vertical dd { float: none; height: auto; }
|
69
|
+
|
70
|
+
dl.tabs.vertical dd a { display: block; width: auto; height: auto; padding: 15px 20px; line-height: 1; border: solid 0px #cccccc; border-width: 1px 1px 0px; margin: 0; color: #555555; background: #eeeeee; font-size: 15px; font-size: 1.5rem; }
|
71
|
+
dl.tabs.vertical dd a.active { height: auto; margin: 0; border-width: 1px 0px 0px; background: white; }
|
72
|
+
|
73
|
+
.nice.tabs.vertical { border-bottom: solid 1px #eeeeee; height: auto; }
|
74
|
+
.nice.tabs.vertical dd a { padding: 15px 20px; background: white; border: none; border-left: 1px solid #eeeeee; border-right: 1px solid #eeeeee; border-top: 1px solid #eeeeee; }
|
75
|
+
.nice.tabs.vertical dd a.active { border: none; background: #00a6fc; color: white; margin: 0; position: static; top: 0px; height: auto; }
|
76
|
+
.nice.tabs.vertical dd:first-child { margin-left: 0; }
|
77
|
+
|
78
|
+
dl.tabs.vertical { height: auto; }
|
79
|
+
|
80
|
+
ul.tabs-content { margin: 0; display: block; }
|
81
|
+
ul.tabs-content > li { display: none; }
|
82
|
+
ul.tabs-content > li.active { display: block; }
|
83
|
+
|
84
|
+
dl.contained, dl.nice.contained { margin-bottom: 0px; }
|
85
|
+
|
86
|
+
dl.contained.tabs dd a { padding: 0px 14px; }
|
87
|
+
|
88
|
+
dl.nice.contained.tabs dd a { padding: 7px 18px 9px; }
|
89
|
+
|
90
|
+
ul.contained.tabs-content { padding: 0; }
|
91
|
+
ul.contained.tabs-content li { padding: 20px; border: solid 0px #dddddd; border-width: 0 1px 1px 1px; }
|
92
|
+
|
93
|
+
ul.nice.contained.tabs-content li { border-color: #eeeeee; }
|
94
|
+
|
95
|
+
/* Pagination */
|
96
|
+
ul.pagination { display: block; height: 24px; margin-left: -5px; }
|
97
|
+
ul.pagination li { float: left; display: block; height: 24px; color: #999999; font-size: 15px; font-size: 1.5rem; margin-left: 5px; }
|
98
|
+
ul.pagination li a { display: block; padding: 6px 7px 4px; color: #555555; }
|
99
|
+
ul.pagination li.current a, ul.pagination li:hover a { border-bottom: solid 2px #00a6fc; color: #141414; }
|
100
|
+
ul.pagination li.unavailable a { cursor: default; color: #999999; }
|
101
|
+
ul.pagination li.unavailable:hover a { border-bottom: none; }
|
102
|
+
|
103
|
+
/* Lists */
|
104
|
+
ul.nice, ol.nice { list-style: none; margin: 0; }
|
105
|
+
ul.nice li, ol.nice li { padding-left: 13px; position: relative; }
|
106
|
+
|
107
|
+
ul.nice li span.bullet, ol.nice li span.number { position: absolute; left: 0px; top: 0px; color: #cccccc; }
|
108
|
+
|
109
|
+
/* Panels */
|
110
|
+
div.panel { padding: 20px 20px 2px 20px; background-color: #efefef; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f4f4f4)); background-image: -webkit-linear-gradient(#ffffff 0%, #f4f4f4 100%); background-image: -moz-linear-gradient(#ffffff 0%, #f4f4f4 100%); background-image: -o-linear-gradient(#ffffff 0%, #f4f4f4 100%); background-image: linear-gradient(#ffffff 0%, #f4f4f4 100%); -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15); -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15); -o-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15); box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15); margin: 0 0 20px 0; }
|