From a762bd76f7457945981f5cc81ca624bc4a9f26fd Mon Sep 17 00:00:00 2001 From: Emil Baehr Date: Sun, 6 Jan 2019 20:51:40 +0100 Subject: [PATCH] Adding main app icon image, name and price --- docs/_sass/layout.scss | 32 +++++++++++++++++++++++++++++++- docs/assets/squircle120.svg | 10 ++++++++++ docs/index.html | 17 +++++++++++++++++ 3 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 docs/assets/squircle120.svg diff --git a/docs/_sass/layout.scss b/docs/_sass/layout.scss index f1c4e04..b1cf035 100644 --- a/docs/_sass/layout.scss +++ b/docs/_sass/layout.scss @@ -39,7 +39,7 @@ body { grid-column-gap: 30px; grid-template-areas: "h h h h h h h h h h h h" - "p p p p p p p p p p p p" + "p p p p p p i i i i i i" "c c c c c c c c c c c c" "f f f f f f f f f f f f"; } @@ -100,6 +100,36 @@ nav > ul li a { grid-area: p; } +.appInfo { + grid-area: i; + display: flex; +} + +.appIconLarge { + width: 120px; + height: 120px; + -webkit-clip-path: url(#shape120); + clip-path: url(#shape120); +} + +.appNamePriceContainer { + display: flex; + flex-wrap: wrap; + flex-direction: row; +} + +.appName { + display: flex; + margin-top: 0px; + color: #fff; +} + +.appPrice { + display: flex; + color: #fff; + font-weight: normal; +} + .features { grid-area: c; background-color:rgb(255, 208, 0); diff --git a/docs/assets/squircle120.svg b/docs/assets/squircle120.svg new file mode 100644 index 0000000..1ef9a90 --- /dev/null +++ b/docs/assets/squircle120.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/docs/index.html b/docs/index.html index 4fbeb19..2d5e55f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -16,6 +16,23 @@ title: Your App – Subtitle
+ + + + + + + + + +
+

+ Your App +

+

+ $9.99 +

+
-- 2.51.2