hardpool-flat 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/_sass/_var.scss CHANGED
@@ -6,35 +6,35 @@ $p-img : unquote("/assets/img/");
6
6
  // =============================================================================
7
7
  // colors
8
8
  // =============================================================================
9
- $light-teal : rgb(80,215,150);
10
- $teal : rgb(0,180,140);
11
- $blue : rgb(0,80,220);
12
- $red : #f45549; //rgb(240,90,65);
13
- $yellow : rgb(255,220,60);
9
+ // $light-teal : rgb(80,215,150);
10
+ // $teal : rgb(0,180,140);
11
+ // $blue : rgb(0,80,220);
12
+ // $red : #f45549; //rgb(240,90,65);
13
+ // $yellow : rgb(255,220,60);
14
14
 
15
+ $dark : #333;
15
16
  $gray : #ccc;
16
- $primary : $blue;
17
- $secondary : $teal;
18
- $success : $teal/1.2;
19
- $info : $gray/1.25;
20
- $warning : $yellow;
21
- $danger : $red;
17
+ $primary : #c59871;
18
+ $secondary : $dark;
19
+ $success : #02c33d;
20
+ $info : darken($gray, 12%);
21
+ $warning : #d9834f;
22
+ $danger : #d62337;
22
23
  $text-muted : $gray;
23
- $dark : #000;
24
24
 
25
- // =============================================================================
26
- // height-width
27
- // =============================================================================
28
- $h-header : 6.5rem;
29
- $h-footer : 24.5rem;
30
- $h-footer-br : 19rem;
31
- $w-mainLogo : 7.2rem;
25
+ // // =============================================================================
26
+ // // height-width
27
+ // // =============================================================================
28
+ // $h-header : 6.5rem;
29
+ // $h-footer : 24.5rem;
30
+ // $h-footer-br : 19rem;
31
+ // $w-mainLogo : 7.2rem;
32
32
 
33
- // =============================================================================
34
- // font-family
35
- // =============================================================================
36
- $f-normal : sourcesans;
37
- $f-heading : colaborate;
33
+ // // =============================================================================
34
+ // // font-family
35
+ // // =============================================================================
36
+ // $f-normal : sourcesans;
37
+ // $f-heading : colaborate;
38
38
 
39
39
  // =============================================================================
40
40
  // easing
@@ -21,7 +21,7 @@ $h3-font-size: 1.7rem;
21
21
  $h4-font-size: 1.4rem;
22
22
  $h5-font-size: 1.2rem;
23
23
 
24
- $navbar-light-color: $gray/1.2;;
24
+ $navbar-light-color: darken($gray, 12%);
25
25
  $navbar-light-hover-color: $secondary;
26
26
  $navbar-light-active-color: $secondary;
27
27
 
@@ -73,11 +73,6 @@ $navbar-light-active-color: $secondary;
73
73
 
74
74
  //========= bootstrap override ==========
75
75
  .btn{
76
- font-weight: bold;
77
- padding: 0.5rem 1rem;
78
- border-radius: 0;
79
- text-transform: uppercase;
80
- font-size: 1rem;
81
76
 
82
77
  &:active, &:focus{
83
78
  outline: 0;
@@ -120,7 +115,7 @@ label{
120
115
  }
121
116
  a {
122
117
  color: $secondary;
123
- text-decoration: underline;
118
+ /* text-decoration: underline; */
124
119
  @include transition;
125
120
  &:hover {
126
121
  text-decoration: none;
@@ -144,6 +139,13 @@ a {
144
139
  padding: .5rem 1.25rem;
145
140
  }
146
141
  .btn-secondary.disabled, .btn-secondary:disabled{
147
- background-color: $gray/1.2;
148
- border-color: $gray/1.2;
142
+ background-color: darken($gray, 12%);
143
+ border-color: darken($gray, 12%);
144
+ }
145
+ .popover{
146
+ font-family: inherit;
147
+ background-color: rgba(255,255,255,0.9);
148
+ .popover-body{
149
+ padding: 0;
150
+ }
149
151
  }
@@ -0,0 +1,14 @@
1
+ .animation-wrapper {
2
+ overflow: hidden;
3
+
4
+ .fade-in {
5
+ @include transition(all, 1s, $e-easeOutCubic);
6
+ opacity: 0;
7
+ transform: translateY(15rem);
8
+
9
+ &.in-view {
10
+ opacity: 1;
11
+ transform: translateY(0);
12
+ }
13
+ }
14
+ }
@@ -1,5 +1,7 @@
1
- @include font-face(muli, "/assets/fonts/muli/Muli-Regular", 300, normal, ttf);
2
- @include font-face(muli, "/assets/fonts/muli/Muli-Bold", 600, bold, ttf);
1
+ @import url('https://fonts.googleapis.com/css?family=Montserrat:400,600|Playfair+Display:400,700');
2
+ @import url('https://fonts.googleapis.com/css?family=Dancing+Script');
3
+ // @include font-face(muli, "/assets/fonts/muli/Muli-Regular", 300, normal, ttf);
4
+ // @include font-face(muli, "/assets/fonts/muli/Muli-Bold", 600, bold, ttf);
3
5
  // @include font-face(woodford, "/assets/fonts/woodford/woodfordbourne-thin", 100, thin, otf);
4
6
  // @include font-face(woodford, "/assets/fonts/woodford/woodfordbourne-thinitalic", 100, italic, otf);
5
7
 
@@ -7,22 +9,18 @@
7
9
  html, body {
8
10
  font: {
9
11
  size: 16px;
10
- family: "muli";
12
+ family: 'Montserrat', sans-serif;
11
13
  }
14
+ color: $dark;
15
+ }
16
+ body {
12
17
  overflow-x: hidden;
13
18
  }
14
19
  h1,h2,h3,h4,h5,
15
- .h1,.h2,.h3,.h4,.h5,{
16
- // font-family: "playfair";
17
- font-weight: bold;
18
- }
19
- app-header {
20
- max-height: $h-header;
21
- display: block;
22
-
23
- /* @media (max-width: 767px) {
24
- max-height: 5rem;
25
- } */
20
+ .h1,.h2,.h3,.h4,.h5{
21
+ font-weight: bold;
22
+ font-family: 'Playfair Display', serif;
23
+ color: #000;
26
24
  }
27
25
  a {
28
26
  outline: none;
@@ -33,13 +31,7 @@ table{
33
31
  width: 100%;
34
32
  }
35
33
  .gray-bg{
36
- background: $gray*1.15;
37
- }
38
- .main-content {
39
- min-height: calc(100vh - #{$h-header} - #{$h-footer});
40
- @media (min-width: 768px) {
41
- min-height: calc(100vh - #{$h-header} - #{$h-footer-br});
42
- }
34
+ background: lighten($gray, 12%);
43
35
  }
44
36
  .error-msg{
45
37
  color: $danger;
@@ -1,12 +1,51 @@
1
1
  header {
2
- border-top: 0.4rem solid $primary;
3
-
4
- .main-logo{
5
- $size: 10rem;
6
- height: $size;
7
- width: $size;
8
- border-radius: 100%;
9
- background-color: $gray;
10
- display: inline-block;
11
- }
2
+ border-top: 0.4rem solid $primary;
3
+
4
+ .navbar-light .navbar-brand{
5
+ font-family: 'Dancing Script', cursive;
6
+ font-size: 3rem;
7
+ color: $dark;
8
+ }
9
+
10
+ &.style-default{
11
+ .main-logo{
12
+ $size: 8rem;
13
+ height: $size;
14
+ width: $size;
15
+ border-radius: 100%;
16
+ background-color: $gray;
17
+ display: inline-block;
18
+ }
19
+
20
+ .nav-item{
21
+ margin: 0 0.7rem;
22
+
23
+ .nav-link{
24
+ color: $dark;
25
+ font-weight: bold;
26
+ font-size: 1.2rem;
27
+ padding: 0.1rem 0.2rem;
28
+
29
+ &.active {
30
+ border-bottom: 2px solid $primary;
31
+ }
32
+ }
33
+ }
34
+ }
35
+
36
+ &.style-1 {
37
+ .nav-item{
38
+ margin: 0 0.7rem;
39
+
40
+ .nav-link{
41
+ color: $dark;
42
+ font-size: 1rem;
43
+ padding: 0.1rem 0.2rem;
44
+
45
+ &.active {
46
+ color: $primary;
47
+ }
48
+ }
49
+ }
50
+ }
12
51
  }
@@ -0,0 +1,263 @@
1
+ p, li {
2
+ color: darken($color: $gray, $amount: 50%);
3
+ }
4
+ a h1 {
5
+ color: $dark;
6
+ @include transition;
7
+
8
+ &:hover {
9
+ color: $primary;
10
+ }
11
+ }
12
+ img {
13
+ image-orientation: from-image;
14
+ }
15
+ .btn {
16
+ border-radius: 0;
17
+ font-size: 0.85rem;
18
+ letter-spacing: 0.1rem;
19
+ text-transform: uppercase;
20
+ padding: 0.5rem 1rem;
21
+
22
+ &.btn-link {
23
+ text-transform: uppercase;
24
+
25
+ &:hover {
26
+ text-decoration: none;
27
+ }
28
+ }
29
+ }
30
+ .btn-icon {
31
+ $size: 2.6rem;
32
+ width: $size;
33
+ height: $size;
34
+ border-radius: 100%;
35
+ padding: 0;
36
+ font-size: $size - $size/3;
37
+ background-color: lighten($color: $gray, $amount: 8%);
38
+ color: darken($color: $gray, $amount: 20%);
39
+ border: none;
40
+ margin: 0 0.3rem;
41
+
42
+ &:hover {
43
+ color: darken($primary, 10%);
44
+ background-color: lighten($color: $gray, $amount: 8%);
45
+ }
46
+ }
47
+ .btn-secondary {
48
+ color: lighten($color: $primary, $amount: 10%);
49
+
50
+ &:hover {
51
+ background: darken($color: $secondary, $amount: 10%);
52
+ color: lighten($color: $primary, $amount: 10%);
53
+ }
54
+ }
55
+ .lh-1{
56
+ line-height: 1;
57
+ }
58
+ .lh-15{
59
+ line-height: 1.3;
60
+ }
61
+ .banner-carousel {
62
+ .carousel-control-prev, .carousel-control-next{
63
+ position: relative;
64
+ opacity: 1;
65
+ // background: $secondary;
66
+ display: inline-block;
67
+ width: auto;
68
+ line-height: 0.9;
69
+ padding: 0.3rem;
70
+ }
71
+ .carousel-control-prev-icon, .carousel-control-next-icon{
72
+ height: 1.2rem;
73
+ width: 1.2rem;
74
+ }
75
+ .carousel-control-wrapper{
76
+ position: absolute;
77
+ right: 0;
78
+ bottom: calc(10% - 0.9rem);
79
+ }
80
+ .carousel-control-prev-icon {
81
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
82
+ }
83
+ .carousel-control-next-icon {
84
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
85
+ }
86
+ }
87
+ .default-carousel {
88
+ .carousel-control-prev, .carousel-control-next{
89
+ width: 2rem;
90
+ }
91
+ .carousel-control-prev{
92
+ left: -2rem;
93
+ }
94
+ .carousel-control-next{
95
+ right: -2rem;
96
+ }
97
+ .carousel-control-prev-icon {
98
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
99
+ }
100
+ .carousel-control-next-icon {
101
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
102
+ }
103
+ }
104
+ .carousel-indicators li{
105
+ width: 0.5rem;
106
+ height: 0.5rem;
107
+ border-radius: 0.5rem;
108
+
109
+ &.active {
110
+ width: 1rem;
111
+ }
112
+ }
113
+ .sm-gutters {
114
+ margin-right: 0;
115
+ margin-left: 0;
116
+
117
+ > .col,
118
+ > [class*="col-"] {
119
+ padding-right: 0.05rem;
120
+ padding-left: 0.05rem;
121
+ }
122
+ }
123
+ .md-gutters {
124
+ margin-right: 0;
125
+ margin-left: 0;
126
+
127
+ > .col,
128
+ > [class*="col-"] {
129
+ padding-right: 0.4rem;
130
+ padding-left: 0.4rem;
131
+ }
132
+ }
133
+ .section-heading{
134
+ font-weight: 600;
135
+ color: $primary;
136
+ text-transform: capitalize;
137
+ letter-spacing: 0.15rem;
138
+ margin-bottom: 2rem;
139
+ text-align: center;
140
+
141
+ span {
142
+ border-bottom: 1px solid;
143
+ padding: 0.5rem 10rem;
144
+ max-width: 100%;
145
+
146
+ &.sm {
147
+ padding: 0.5rem;
148
+ }
149
+ }
150
+ }
151
+ .modal-backdrop {
152
+ background-color: #fff;
153
+ &.show{
154
+ opacity: .95;
155
+ }
156
+ }
157
+ .modal-content {
158
+ background: transparent;
159
+ border: none;
160
+
161
+ .modal-header, .modal-footer {
162
+ border: none;
163
+ }
164
+ }
165
+ .img-11{
166
+ @include picture-bg;
167
+ padding-top: 100%;
168
+ }
169
+ .img-34{
170
+ @include picture-bg;
171
+ padding-top: 133.3333%;
172
+ }
173
+ .img-43{
174
+ @include picture-bg;
175
+ padding-top: 75%;
176
+ }
177
+
178
+ .thumb-post{
179
+ @include transition(all, 0.3s);
180
+ @include picture-bg(auto);
181
+ padding-top: 100%;
182
+ margin-top: 0.05rem;
183
+ cursor: pointer;
184
+ &:hover {
185
+ opacity: 0.6;
186
+ }
187
+ }
188
+
189
+ /* ****************** portfolio ******************* */
190
+ /* .portfolio-item {
191
+ .picture {
192
+ @include picture-bg(34rem);
193
+ }
194
+ } */
195
+
196
+ /* ****************** portfolio-landing ******************* */
197
+ .bg-grad{
198
+ background-image: linear-gradient(125deg, desaturate(lighten($primary, 25%), 15%), desaturate(lighten($primary, 25%), 15%));
199
+ background-size: 100% 80%;
200
+ background-repeat: no-repeat;
201
+ background-position: center;
202
+ }
203
+ .overlap-right {
204
+ position: absolute;
205
+ right: 0;
206
+ }
207
+ .overlap-left {
208
+ position: absolute;
209
+ left: 0;
210
+ }
211
+ .bnr-wrapper {
212
+ background: #fff;
213
+ width: 100%;
214
+ max-height: 15rem;
215
+ overflow: hidden;
216
+ }
217
+ .img-overlap{
218
+ border: 0.5rem solid #fff;
219
+ z-index: 2;
220
+ position: relative;
221
+ }
222
+ .outfits-info {
223
+ span{
224
+ border-left: 1px solid $gray;
225
+ &:first-child{
226
+ padding-left: 0!important;
227
+ border-left: none;
228
+ }
229
+ }
230
+ }
231
+ /* ****************** footer ******************* */
232
+ .footer-insta-port {
233
+ .col:first-of-type {
234
+ padding-left: 0;
235
+ }
236
+ .col:last-of-type {
237
+ padding-right: 0;
238
+ }
239
+ .insta-img {
240
+ .overlay {
241
+ @include transition(all, 0.3s);
242
+ opacity: 0;
243
+ position: absolute;
244
+ width: 100%;
245
+ height: 100%;
246
+ top: 0;
247
+ left: 0;
248
+ font-size: 0.8rem;
249
+ background-color: rgba(255,255,255,0.8);
250
+ display: flex;
251
+ align-items: center;
252
+ color: $primary;
253
+ justify-content: center;
254
+ &:hover{
255
+ opacity: 1;
256
+ }
257
+ }
258
+ }
259
+ }
260
+ /* ****************** header ******************* */
261
+ .subnav-item {
262
+ border-bottom: 1px solid lighten($gray, 10%);
263
+ }
data/_sass/theme.scss CHANGED
@@ -2,4 +2,6 @@
2
2
  @import 'mixins';
3
3
 
4
4
  @import 'theme/global';
5
+ @import 'theme/animations';
6
+ @import 'theme/page';
5
7
  @import 'theme/header';