From 9d3fbd117e59dae5cf27688e11e830724c45c859 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 7 Jan 2022 15:42:18 +0300 Subject: [PATCH] Update cards --- src/app/components/charts/charts.component.ts | 2 +- .../components/landing/landing.component.html | 62 +++++++++++-------- .../components/landing/landing.component.scss | 29 ++++++++- .../components/landing/landing.component.ts | 3 +- 4 files changed, 65 insertions(+), 31 deletions(-) diff --git a/src/app/components/charts/charts.component.ts b/src/app/components/charts/charts.component.ts index 4554485..b246a45 100755 --- a/src/app/components/charts/charts.component.ts +++ b/src/app/components/charts/charts.component.ts @@ -52,7 +52,7 @@ export class ChartsComponent implements OnInit { plugins: { legend: { labels: { - fontColor: '#A0A7B5' + fontColor: '#FFFFFF' } } }, diff --git a/src/app/components/landing/landing.component.html b/src/app/components/landing/landing.component.html index 9d4f96b..434134f 100644 --- a/src/app/components/landing/landing.component.html +++ b/src/app/components/landing/landing.component.html @@ -1,5 +1,5 @@
-
+
Sakai LogoSAKAI @@ -54,42 +54,50 @@
-
-
- +
+
+
+ +
+
Easy to Use
+ Posuere morbi leo urna molestie.
-
Easy to Use
- Posuere morbi leo urna molestie.
-
-
- +
+
+
+ +
+
Fresh Design
+ Semper risus in hendrerit.
-
Fresh Design
- Semper risus in hendrerit.
-
-
- +
+
+
+ +
+
Well Documented
+ Non arcu risus quis varius quam quisque.
-
Well Documented
- Non arcu risus quis varius quam quisque.
-
-
- +
+
+
+ +
+
Responsive Layout
+ Nulla malesuada pellentesque elit.
-
Responsive Layout
- Nulla malesuada pellentesque elit.
@@ -167,9 +175,9 @@ Amet consectetur adipiscing elit...
-
-
- mockup mobile +
+
+ mockup mobile
@@ -181,7 +189,7 @@
-
+
@@ -190,8 +198,8 @@ Lectus arcu bibendum at varius vel pharetra vel turpis nunc. Eget aliquet nibh praesent tristique magna sit amet purus gravida. Sit amet mattis vulputate enim nulla aliquet.
-
- mockup +
+ mockup
diff --git a/src/app/components/landing/landing.component.scss b/src/app/components/landing/landing.component.scss index 302bdd3..ed84233 100644 --- a/src/app/components/landing/landing.component.scss +++ b/src/app/components/landing/landing.component.scss @@ -9,8 +9,33 @@ #testimonial-card{ background:linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), radial-gradient(77.36% 256.97% at 77.36% 57.52%, #EFE1AF 0%, #C3DCFA 100%); } -a{ - color:none; + +.box-wrapper{ + padding:2px; +} + +.border-10{ + border-radius:10px; +} + +.gradient-yellow{ + background: linear-gradient(180deg, rgba(253, 228, 165, 0.2),rgba(187, 199, 205, 0.2)), linear-gradient(90deg, rgba(253, 228, 165, 0.2),rgba(187, 199, 205, 0.2)); +} + +.gradient-yellow-2{ + background: linear-gradient(90deg, rgba(187, 199, 205, 0.2),rgba(251, 199, 145, 0.2)), linear-gradient(180deg, rgba(253, 228, 165, 0.2),rgba(145, 210, 204, 0.2)); +} + +.gradient-blue{ + background: linear-gradient(180deg, rgba(145,226,237,0.2),rgba(251, 199, 145, 0.2)), linear-gradient(90deg, rgba(253, 228, 165, 0.2), rgba(172, 180, 223, 0.2)); +} + +.gradient-purple{ + background: linear-gradient(90deg, rgba(145, 226, 237, 0.2), rgba(172, 180, 223, 0.2)), linear-gradient(180deg, rgba(172, 180, 223, 0.2), rgba(246, 158, 188, 0.2)); +} + +.gradient-purple-2{ + background: linear-gradient(90deg, rgba(187, 199, 205, 0.2), rgba(246, 158, 188, 0.2)), linear-gradient(180deg, rgba(145, 226, 237, 0.2), rgba(160, 158, 188, 0.2)); } @media (min-width:769px){ diff --git a/src/app/components/landing/landing.component.ts b/src/app/components/landing/landing.component.ts index 02fd004..61fa5ca 100644 --- a/src/app/components/landing/landing.component.ts +++ b/src/app/components/landing/landing.component.ts @@ -1,5 +1,4 @@ import { Component, OnInit } from '@angular/core'; - @Component({ selector: 'app-landing', templateUrl: './landing.component.html', @@ -10,6 +9,8 @@ export class LandingComponent implements OnInit { constructor() { } ngOnInit(): void { + let themeElement = document.getElementById('theme-css'); + themeElement.setAttribute('href','assets/theme/saga-blue/theme.css'); } }