File tree Expand file tree Collapse file tree 5 files changed +37
-44
lines changed Expand file tree Collapse file tree 5 files changed +37
-44
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ features :
34
34
fontawesome_icon_name : adjust
35
35
36
36
# Theme Settings
37
- accent_color : # 000000
38
- image_overlay_color : # 000000
37
+ accent_color : " #1d63ea "
38
+ image_overlay_color : " #363b3d "
39
39
40
40
41
41
# Analytics
Original file line number Diff line number Diff line change 1
1
// Layout and grids
2
2
$content-width : 1170px ;
3
3
4
- // Colors
5
- $accent-color : #00ff33 ;
6
-
7
4
// Fonts and sizes
8
5
$font : ' Helvetica Neue' , sans-serif ;
9
6
$primary-text-color : #000 ;
10
7
11
- * ,
12
- * ::before ,
13
- * ::after {
14
- -webkit-box-sizing : border-box ;
15
- -moz-box-sizing : border-box ;
16
- box-sizing : border-box ;
17
- }
18
-
19
8
html {
20
9
font-size : 62.5% ;
21
10
}
40
29
font-size : 2rem ;
41
30
}
42
31
32
+ // Better font rendering
43
33
body {
44
- -webkit-font-smoothing : antialiased ; // Better font rendering
34
+ -webkit-font-smoothing : antialiased ;
45
35
-moz-osx-font-smoothing : grayscale ;
36
+ }
37
+
38
+ // Shadows
39
+ $drop-shadow : drop-shadow (0px 5px 10px rgba (#000 , 0.1 )) drop-shadow (0px 1px 1px rgba (#000 , 0.2 ));
40
+
41
+
42
+ // Various resets
43
+ * ,
44
+ * ::before ,
45
+ * ::after {
46
+ -webkit-box-sizing : border-box ;
47
+ -moz-box-sizing : border-box ;
48
+ box-sizing : border-box ;
49
+
50
+ margin : 0 ;
51
+ padding : 0 ;
46
52
}
Original file line number Diff line number Diff line change 1
1
body {
2
2
box-sizing : border-box ;
3
- margin : 0 ;
4
3
font-family : $font ;
5
4
}
6
5
9
8
height : 768px ;
10
9
background :
11
10
linear-gradient (
12
- rgba (#363b3d , 0.6 ),
13
- rgba (#363b3d , 0.6 )
14
- ),
15
- /* bottom, image */
11
+ rgba ($image-overlay-color , 0.6 ),
12
+ rgba ($image-overlay-color , 0.6 )
13
+ ),
14
+
16
15
url (" /assets/headerimage.png" );
17
16
18
17
background-repeat : no-repeat ;
24
23
.headerBackground {
25
24
width : 100% ;
26
25
height : 115px ;
27
- background-color : rgba (#000000 , 0.1 );
26
+ background-color : rgba (#000 , 0.1 );
28
27
}
29
28
30
29
.container {
@@ -96,10 +95,6 @@ nav > ul li a {
96
95
color : #fff ;
97
96
}
98
97
99
- .iphonePreview {
100
- grid-area : p;
101
- }
102
-
103
98
.appInfo {
104
99
grid-area : i;
105
100
display : flex ;
@@ -109,10 +104,8 @@ nav > ul li a {
109
104
}
110
105
111
106
.appIconShadow {
112
- margin : 0px ;
113
- padding : 0px ;
114
107
display : flex ;
115
- filter : drop-shadow ( 0 px 5 px 10 px rgba ( #000 , 0.1 )) drop-shadow ( 0 px 1 px 1 px rgba ( #000 , 0.2 )) ;
108
+ filter : $ drop-shadow ;
116
109
}
117
110
118
111
.appIconLarge {
@@ -129,14 +122,12 @@ nav > ul li a {
129
122
}
130
123
131
124
.appName {
132
- margin : 0px ;
133
125
margin-top : -5px ;
134
126
color : #fff ;
135
127
}
136
128
137
129
.appPrice {
138
130
color : #fff ;
139
- margin : 0px ;
140
131
margin-top : 8px ;
141
132
font-weight : normal ;
142
133
}
@@ -149,23 +140,22 @@ nav > ul li a {
149
140
}
150
141
151
142
.appDescription {
152
- margin : 0px ;
153
143
color : #fff ;
154
144
font-weight : normal ;
155
145
}
156
146
157
147
.downloadButtonsContainer {
158
148
margin-top : 42px ;
159
- }
160
-
161
- .appStore {
162
- margin-left : 24px ;
149
+ filter : $drop-shadow ;
163
150
}
164
151
165
152
.playStore {
153
+ margin-right : 25px ;
154
+ margin-bottom : 25px ;
166
155
}
167
156
168
157
.iphonePreview {
158
+ grid-area : p;
169
159
background-image : url (/ assets/Blue.png );
170
160
background-repeat : no-repeat ;
171
161
margin-top : 68px ;
@@ -226,7 +216,7 @@ nav > ul li a {
226
216
}
227
217
228
218
.iconTop {
229
- color : #1d63ea ;
219
+ color : $accent-color ;
230
220
}
231
221
232
222
.socialIconBack {
@@ -247,11 +237,6 @@ nav > ul li a {
247
237
line-height : 1.5 ;
248
238
}
249
239
250
- .featureText * {
251
- margin : 0px ;
252
- padding : 0px ;
253
- }
254
-
255
240
footer {
256
241
grid-area : f;
257
242
display : flex ;
@@ -266,7 +251,6 @@ footer {
266
251
text-align : center ;
267
252
padding-top : 100px ;
268
253
padding-bottom : 100px ;
269
- margin : 0px ;
270
254
}
271
255
272
256
.footerIcons {
Original file line number Diff line number Diff line change 2
2
# Front matter comment to ensure Jekyll properly reads file.
3
3
---
4
4
5
+ $accent-color : {{ site.accent_color }};
6
+ $image-overlay-color : {{ site.image_overlay_color }};
7
+
5
8
@import
6
9
" base" ,
7
10
" layout"
Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ <h3 class="appPrice">
50
50
</ div >
51
51
< div class ="appDescriptionContainer ">
52
52
< h4 class ="appDescription ">
53
- Wherever some that and kiwi that well dolphin alas this the mindfully jeepers one aside canny one preparatory up less therefore hello oh amid goodness checked.
53
+ {{ site.app_description }}
54
54
</ h4 >
55
55
</ div >
56
56
< div class ="downloadButtonsContainer ">
57
- < a href =""> < img class ="playStore " src ="/assets/playstore.png "> </ a >
58
- < a href =""> < img class ="appStore " src ="/assets/appstore.png "> </ a >
57
+ < a href ="https:// "> < img class ="playStore " src ="/assets/playstore.png "> </ a >
58
+ < a href ="https:// "> < img class ="appStore " src ="/assets/appstore.png "> </ a >
59
59
</ div >
60
60
</ div >
61
61
{% include features.html %}
You can’t perform that action at this time.
0 commit comments