Skip to content

Commit 3ae283b

Browse files
committed
Adding main app icon image, name and price
1 parent a8f07c9 commit 3ae283b

File tree

3 files changed

+58
-1
lines changed

3 files changed

+58
-1
lines changed

_sass/layout.scss

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ body {
3939
grid-column-gap: 30px;
4040
grid-template-areas:
4141
"h h h h h h h h h h h h"
42-
"p p p p p p p p p p p p"
42+
"p p p p p p i i i i i i"
4343
"c c c c c c c c c c c c"
4444
"f f f f f f f f f f f f";
4545
}
@@ -100,6 +100,36 @@ nav > ul li a {
100100
grid-area: p;
101101
}
102102

103+
.appInfo {
104+
grid-area: i;
105+
display: flex;
106+
}
107+
108+
.appIconLarge {
109+
width: 120px;
110+
height: 120px;
111+
-webkit-clip-path: url(#shape120);
112+
clip-path: url(#shape120);
113+
}
114+
115+
.appNamePriceContainer {
116+
display: flex;
117+
flex-wrap: wrap;
118+
flex-direction: row;
119+
}
120+
121+
.appName {
122+
display: flex;
123+
margin-top: 0px;
124+
color: #fff;
125+
}
126+
127+
.appPrice {
128+
display: flex;
129+
color: #fff;
130+
font-weight: normal;
131+
}
132+
103133
.features {
104134
grid-area: c;
105135
background-color:rgb(255, 208, 0);

assets/squircle120.svg

Lines changed: 10 additions & 0 deletions
Loading

index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,23 @@
1616
</div>
1717

1818
<div class="appInfo">
19+
<svg width="0" height="0">
20+
<defs>
21+
<clipPath id="shape120">
22+
<path id="Background" class="cls-1" d="M6821,495.533v-4.281c0-1.2-.04-2.4-0.04-3.642a57.7,57.7,0,0,0-.68-7.882,26.144,26.144,0,0,0-2.48-7.483,25.115,25.115,0,0,0-11.04-11.044,26.118,26.118,0,0,0-7.49-2.481,47.28,47.28,0,0,0-7.88-.68c-1.2-.04-2.4-0.04-3.64-0.04h-53.5c-1.2,0-2.4.04-3.64,0.04a57.813,57.813,0,0,0-7.88.68,26.323,26.323,0,0,0-7.49,2.481,25.115,25.115,0,0,0-11.04,11.044,26.144,26.144,0,0,0-2.48,7.483,47.313,47.313,0,0,0-.68,7.882c-0.04,1.2-.04,2.4-0.04,3.642v53.5c0,1.2.04,2.4,0.04,3.641a57.7,57.7,0,0,0,.68,7.883,26.137,26.137,0,0,0,2.48,7.482,25.115,25.115,0,0,0,11.04,11.044,26.261,26.261,0,0,0,7.49,2.481,47.28,47.28,0,0,0,7.88.68c1.2,0.04,2.4.04,3.64,0.04h53.5c1.2,0,2.4-.04,3.64-0.04a57.654,57.654,0,0,0,7.88-.68,26.057,26.057,0,0,0,7.49-2.481,25.115,25.115,0,0,0,11.04-11.044,26.137,26.137,0,0,0,2.48-7.482,47.316,47.316,0,0,0,.68-7.883c0.04-1.2.04-2.4,0.04-3.641V495.533h0Z" transform="translate(-6701 -458)"/>
23+
</clipPath>
24+
</defs>
25+
</svg>
26+
<img class="appIconLarge" src="/assets/appicon-1024px.png">
27+
28+
<div class="appNamePriceContainer">
29+
<h1 class="appName">
30+
Your App
31+
</h1>
32+
<h3 class="appPrice">
33+
$9.99
34+
</h3>
35+
</div>
1936
</div>
2037

2138
<div class="features">

0 commit comments

Comments
 (0)