tessellate 0.1.1 → 0.1.3
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.
- checksums.yaml +4 -4
- data/_config.yml +1 -1
- data/_data/navigation.yml +61 -0
- data/_includes/_navigation.html +140 -0
- data/_includes/contact_form.html +8 -5
- data/_includes/footer.html +1 -1
- data/_includes/header.html +0 -8
- data/_includes/navigation.html +43 -0
- data/_layouts/default.html +21 -0
- data/_layouts/page.html +4 -1
- data/_layouts/section_four.html +40 -0
- data/_layouts/section_one.html +6 -1
- data/_layouts/section_three.html +9 -2
- data/_layouts/section_two.html +11 -2
- data/_sass/custom.scss +4 -0
- data/{assets/sass → _sass}/libs/_breakpoints.scss +18 -18
- data/{assets/sass → _sass}/libs/_html-grid.scss +2 -2
- data/{assets/sass → _sass}/libs/_mixins.scss +1 -1
- data/{assets/sass → _sass}/libs/_vendor.scss +2 -2
- data/{assets/sass/main.scss → _sass/tessellate.scss} +60 -0
- data/assets/css/style.scss +6 -0
- metadata +15 -9
- data/assets/css/main.css +0 -1524
- /data/{assets/sass → _sass}/libs/_functions.scss +0 -0
- /data/{assets/sass → _sass}/libs/_vars.scss +0 -0
@@ -93,6 +93,60 @@
|
|
93
93
|
appearance: none;
|
94
94
|
}
|
95
95
|
|
96
|
+
/* Navigation Menu */
|
97
|
+
.row.navbar {
|
98
|
+
margin: 0;
|
99
|
+
}
|
100
|
+
.navbar {
|
101
|
+
margin: 0;
|
102
|
+
overflow: visible;
|
103
|
+
position: fixed;
|
104
|
+
top: 0;
|
105
|
+
width: 100vw;
|
106
|
+
z-index: 1000;
|
107
|
+
background: #f9f9f9;
|
108
|
+
|
109
|
+
.nav-item {
|
110
|
+
display: inline-block;
|
111
|
+
padding: 0.5em 1em;
|
112
|
+
text-align: center;
|
113
|
+
text-transform: uppercase;
|
114
|
+
background: #f9f9f9;
|
115
|
+
position: relative;
|
116
|
+
|
117
|
+
&:hover {
|
118
|
+
background: #f1f1f1;
|
119
|
+
}
|
120
|
+
|
121
|
+
ul.dropdown {
|
122
|
+
visibility: hidden;
|
123
|
+
position: absolute;
|
124
|
+
top: 100%;
|
125
|
+
left: 0;
|
126
|
+
background-color: #f9f9f9;
|
127
|
+
min-width: 160px;
|
128
|
+
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
129
|
+
z-index: 1000;
|
130
|
+
padding: 0;
|
131
|
+
|
132
|
+
li {
|
133
|
+
display: block;
|
134
|
+
padding: 0.5em 1em;
|
135
|
+
text-align: left;
|
136
|
+
border-bottom: 1px solid #e6e6e6;
|
137
|
+
|
138
|
+
&:hover {
|
139
|
+
background-color: #f1f1f1;
|
140
|
+
}
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
&:hover ul.dropdown {
|
145
|
+
visibility: visible;
|
146
|
+
}
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
96
150
|
/* Basic */
|
97
151
|
|
98
152
|
@-ms-viewport {
|
@@ -1001,6 +1055,11 @@
|
|
1001
1055
|
font-size: 1.5em;
|
1002
1056
|
}
|
1003
1057
|
|
1058
|
+
img {
|
1059
|
+
max-width: 100%;
|
1060
|
+
margin: 0 auto;
|
1061
|
+
}
|
1062
|
+
|
1004
1063
|
&.dark {
|
1005
1064
|
background: #433;
|
1006
1065
|
}
|
@@ -1020,6 +1079,7 @@
|
|
1020
1079
|
&.style4 {
|
1021
1080
|
padding-top: 0;
|
1022
1081
|
background: #fff;
|
1082
|
+
color: #000;
|
1023
1083
|
}
|
1024
1084
|
}
|
1025
1085
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tessellate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Preston Hager
|
@@ -34,13 +34,26 @@ files:
|
|
34
34
|
- LICENSE
|
35
35
|
- README.md
|
36
36
|
- _config.yml
|
37
|
+
- _data/navigation.yml
|
38
|
+
- _includes/_navigation.html
|
37
39
|
- _includes/contact_form.html
|
38
40
|
- _includes/footer.html
|
39
41
|
- _includes/header.html
|
42
|
+
- _includes/navigation.html
|
43
|
+
- _layouts/default.html
|
40
44
|
- _layouts/page.html
|
45
|
+
- _layouts/section_four.html
|
41
46
|
- _layouts/section_one.html
|
42
47
|
- _layouts/section_three.html
|
43
48
|
- _layouts/section_two.html
|
49
|
+
- _sass/custom.scss
|
50
|
+
- _sass/libs/_breakpoints.scss
|
51
|
+
- _sass/libs/_functions.scss
|
52
|
+
- _sass/libs/_html-grid.scss
|
53
|
+
- _sass/libs/_mixins.scss
|
54
|
+
- _sass/libs/_vars.scss
|
55
|
+
- _sass/libs/_vendor.scss
|
56
|
+
- _sass/tessellate.scss
|
44
57
|
- assets/css/fontawesome-all.min.css
|
45
58
|
- assets/css/images/arrow.svg
|
46
59
|
- assets/css/images/bgbl.svg
|
@@ -50,20 +63,13 @@ files:
|
|
50
63
|
- assets/css/images/ie/content-style2.svg
|
51
64
|
- assets/css/images/ie/content-style3.svg
|
52
65
|
- assets/css/images/overlay.png
|
53
|
-
- assets/css/
|
66
|
+
- assets/css/style.scss
|
54
67
|
- assets/js/breakpoints.min.js
|
55
68
|
- assets/js/browser.min.js
|
56
69
|
- assets/js/jquery.min.js
|
57
70
|
- assets/js/jquery.scrolly.min.js
|
58
71
|
- assets/js/main.js
|
59
72
|
- assets/js/util.js
|
60
|
-
- assets/sass/libs/_breakpoints.scss
|
61
|
-
- assets/sass/libs/_functions.scss
|
62
|
-
- assets/sass/libs/_html-grid.scss
|
63
|
-
- assets/sass/libs/_mixins.scss
|
64
|
-
- assets/sass/libs/_vars.scss
|
65
|
-
- assets/sass/libs/_vendor.scss
|
66
|
-
- assets/sass/main.scss
|
67
73
|
- assets/webfonts/fa-brands-400.eot
|
68
74
|
- assets/webfonts/fa-brands-400.svg
|
69
75
|
- assets/webfonts/fa-brands-400.ttf
|