nichols-works 0.0.0

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/_sass/_reset.scss ADDED
@@ -0,0 +1,48 @@
1
+ /* http://meyerweb.com/eric/tools/css/reset/
2
+ v2.0 | 20110126
3
+ License: none (public domain)
4
+ */
5
+
6
+ html, body, div, span, applet, object, iframe,
7
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8
+ a, abbr, acronym, address, big, cite, code,
9
+ del, dfn, em, img, ins, kbd, q, s, samp,
10
+ small, strike, strong, sub, sup, tt, var,
11
+ b, u, i, center,
12
+ dl, dt, dd, ol, ul, li,
13
+ fieldset, form, label, legend,
14
+ table, caption, tbody, tfoot, thead, tr, th, td,
15
+ article, aside, canvas, details, embed,
16
+ figure, figcaption, footer, header, hgroup,
17
+ menu, nav, output, ruby, section, summary,
18
+ time, mark, audio, video {
19
+ margin: 0;
20
+ padding: 0;
21
+ border: 0;
22
+ font-size: 100%;
23
+ font: inherit;
24
+ vertical-align: baseline;
25
+ }
26
+ /* HTML5 display-role reset for older browsers */
27
+ article, aside, details, figcaption, figure,
28
+ footer, header, hgroup, menu, nav, section {
29
+ display: block;
30
+ }
31
+ body {
32
+ line-height: 1;
33
+ }
34
+ ol, ul {
35
+ list-style: none;
36
+ }
37
+ blockquote, q {
38
+ quotes: none;
39
+ }
40
+ blockquote:before, blockquote:after,
41
+ q:before, q:after {
42
+ content: '';
43
+ content: none;
44
+ }
45
+ table {
46
+ border-collapse: collapse;
47
+ border-spacing: 0;
48
+ }
@@ -0,0 +1,6 @@
1
+ $break-desktop: 1300px;
2
+ $break-tablet-wide: 1100px;
3
+ $break-tablet: 960px;
4
+ $break-mobile: 340px;
5
+ $primary-font-color: #FFF;
6
+ $secondary-font-color: #CCC;
@@ -0,0 +1,74 @@
1
+ .highlight {
2
+ color: #fdce93;
3
+ background-color: #3f3f3f;
4
+
5
+ .hll { background-color: #222 }
6
+ .c { color: #7f9f7f }
7
+ .err { color: #e37170; background-color:#3d3535 }
8
+ .g { color: #7f9f7f }
9
+ .k { color: #f0dfaf }
10
+ .l { color: #ccc }
11
+ .n { color: #dcdccc }
12
+ .o { color: #f0efd0 }
13
+ .x { color: #ccc }
14
+ .p { color: #41706f }
15
+ .cm { color: #7f9f7f }
16
+ .cp { color: #7f9f7f }
17
+ .c1 { color: #7f9f7f }
18
+ .cs { color: #cd0000; font-weight:bold }
19
+ .gd { color: #cd0000 }
20
+ .ge { color: #ccc; font-style:italic }
21
+ .gr { color: red }
22
+ .gh { color: #dcdccc; font-weight:bold }
23
+ .gi { color: #00cd00 }
24
+ .go { color: gray }
25
+ .gp { color: #dcdccc; font-weight:bold }
26
+ .gs { color: #ccc; font-weight:bold }
27
+ .gu { color: purple; font-weight:bold }
28
+ .gt { color: #0040D0 }
29
+ .kc { color: #dca3a3 }
30
+ .kd { color: #ffff86 }
31
+ .kn { color: #dfaf8f; font-weight:bold }
32
+ .kp { color: #cdcf99 }
33
+ .kr { color: #cdcd00 }
34
+ .kt { color: #00cd00 }
35
+ .ld { color: #cc9393 }
36
+ .m { color: #8cd0d3 }
37
+ .s { color: #cc9393 }
38
+ .na { color: #9ac39f }
39
+ .nb { color: #efef8f }
40
+ .nc { color: #efef8f }
41
+ .no { color: #ccc }
42
+ .nd { color: #ccc }
43
+ .ni { color: #c28182 }
44
+ .ne { color: #c3bf9f; font-weight:bold }
45
+ .nf { color: #efef8f }
46
+ .nl { color: #ccc }
47
+ .nn { color: #8fbede }
48
+ .nx { color: #ccc }
49
+ .py { color: #ccc }
50
+ .nt { color: #9ac39f }
51
+ .nv { color: #dcdccc }
52
+ .ow { color: #f0efd0 }
53
+ .w { color: #ccc }
54
+ .mf { color: #8cd0d3 }
55
+ .mh { color: #8cd0d3 }
56
+ .mi { color: #8cd0d3 }
57
+ .mo { color: #8cd0d3 }
58
+ .sb { color: #cc9393 }
59
+ .sc { color: #cc9393 }
60
+ .sd { color: #cc9393 }
61
+ .s2 { color: #cc9393 }
62
+ .se { color: #cc9393 }
63
+ .sh { color: #cc9393 }
64
+ .si { color: #cc9393 }
65
+ .sx { color: #cc9393 }
66
+ .sr { color: #cc9393 }
67
+ .s1 { color: #cc9393 }
68
+ .ss { color: #cc9393 }
69
+ .bp { color: #efef8f }
70
+ .vc { color: #efef8f }
71
+ .vg { color: #dcdccc }
72
+ .vi { color: #ffffc7 }
73
+ .il { color: #8cd0d3 }
74
+ }
@@ -0,0 +1,91 @@
1
+ @import 'variables';
2
+
3
+ .panel {
4
+ display: block;
5
+ width: 100%;
6
+ height: 100%;
7
+ background: url(/assets/images/cover.jpg) top left no-repeat #FFF;
8
+ background-size: cover;
9
+
10
+ * {
11
+ color: $primary-font-color;
12
+ text-decoration: none;
13
+ }
14
+
15
+ .container {
16
+ display: block;
17
+ position: relative;
18
+ width: 100%;
19
+ height: 100%;
20
+ }
21
+
22
+ .overlay {
23
+ position: absolute;
24
+ left: 0;
25
+ top: 0;
26
+ width: 100%;
27
+ height: 100%;
28
+ background: linear-gradient(-45deg, rgba(0, 0, 0, 0.7), rgba(75, 75, 75, 0.4));
29
+ }
30
+
31
+ .divider {
32
+ color: $secondary-font-color;
33
+
34
+ &.small {
35
+ width: 25%;
36
+ }
37
+
38
+ &.large {
39
+ width: 50%;
40
+ }
41
+ }
42
+
43
+ .contents {
44
+ position: absolute;
45
+ left: 0;
46
+ top: 0;
47
+ width: 100%;
48
+ height: 100%;
49
+ text-align: center;
50
+
51
+ .title {
52
+ margin: 0 0 5px 0;
53
+ font-size: 2.5em;
54
+ letter-spacing: 4px;
55
+ }
56
+
57
+ .subtitle {
58
+ font-family: "Roboto Slab", serif;
59
+ font-size: 1.2em;
60
+ font-weight: lighter;
61
+ letter-spacing: 3px;
62
+ }
63
+
64
+ nav * ul {
65
+ margin: 0;
66
+ list-style-type: none;
67
+ }
68
+
69
+ nav * li {
70
+ display: inline-block;
71
+ padding: 6px 8px;
72
+ }
73
+ }
74
+ }
75
+
76
+ .social-link {
77
+ border: 2px $primary-font-color solid;
78
+ border-radius: 25px;
79
+ }
80
+
81
+ @media all and (min-width: $break-desktop) {
82
+ }
83
+
84
+ @media all and (max-width: $break-tablet-wide) {
85
+ }
86
+
87
+ @media all and (max-width: $break-tablet) {
88
+ }
89
+
90
+ @media all and (max-width: $break-mobile) {
91
+ }
@@ -0,0 +1,34 @@
1
+ // Spinning Icons
2
+ // --------------------------
3
+
4
+ .#{$fa-css-prefix}-spin {
5
+ -webkit-animation: fa-spin 2s infinite linear;
6
+ animation: fa-spin 2s infinite linear;
7
+ }
8
+
9
+ .#{$fa-css-prefix}-pulse {
10
+ -webkit-animation: fa-spin 1s infinite steps(8);
11
+ animation: fa-spin 1s infinite steps(8);
12
+ }
13
+
14
+ @-webkit-keyframes fa-spin {
15
+ 0% {
16
+ -webkit-transform: rotate(0deg);
17
+ transform: rotate(0deg);
18
+ }
19
+ 100% {
20
+ -webkit-transform: rotate(359deg);
21
+ transform: rotate(359deg);
22
+ }
23
+ }
24
+
25
+ @keyframes fa-spin {
26
+ 0% {
27
+ -webkit-transform: rotate(0deg);
28
+ transform: rotate(0deg);
29
+ }
30
+ 100% {
31
+ -webkit-transform: rotate(359deg);
32
+ transform: rotate(359deg);
33
+ }
34
+ }
@@ -0,0 +1,25 @@
1
+ // Bordered & Pulled
2
+ // -------------------------
3
+
4
+ .#{$fa-css-prefix}-border {
5
+ padding: .2em .25em .15em;
6
+ border: solid .08em $fa-border-color;
7
+ border-radius: .1em;
8
+ }
9
+
10
+ .#{$fa-css-prefix}-pull-left { float: left; }
11
+ .#{$fa-css-prefix}-pull-right { float: right; }
12
+
13
+ .#{$fa-css-prefix} {
14
+ &.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
15
+ &.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
16
+ }
17
+
18
+ /* Deprecated as of 4.4.0 */
19
+ .pull-right { float: right; }
20
+ .pull-left { float: left; }
21
+
22
+ .#{$fa-css-prefix} {
23
+ &.pull-left { margin-right: .3em; }
24
+ &.pull-right { margin-left: .3em; }
25
+ }
@@ -0,0 +1,12 @@
1
+ // Base Class Definition
2
+ // -------------------------
3
+
4
+ .#{$fa-css-prefix} {
5
+ display: inline-block;
6
+ font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7
+ font-size: inherit; // can't have font-size inherit on line above, so need to override
8
+ text-rendering: auto; // optimizelegibility throws things off #1094
9
+ -webkit-font-smoothing: antialiased;
10
+ -moz-osx-font-smoothing: grayscale;
11
+
12
+ }
@@ -0,0 +1,6 @@
1
+ // Fixed Width Icons
2
+ // -------------------------
3
+ .#{$fa-css-prefix}-fw {
4
+ width: (18em / 14);
5
+ text-align: center;
6
+ }