From cb1e36572613f830c37b44f6b6f7eca5cbd91e86 Mon Sep 17 00:00:00 2001 From: Shourya Date: Thu, 8 Aug 2024 20:56:59 +0530 Subject: [PATCH 1/5] Issue #1336 --- .../Zooming-text-animation/index.html | 16 ++++++++++ .../Zooming-text-animation/style.css | 32 +++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 Components/Text-Animations/Zooming-text-animation/index.html create mode 100644 Components/Text-Animations/Zooming-text-animation/style.css diff --git a/Components/Text-Animations/Zooming-text-animation/index.html b/Components/Text-Animations/Zooming-text-animation/index.html new file mode 100644 index 00000000..9c754195 --- /dev/null +++ b/Components/Text-Animations/Zooming-text-animation/index.html @@ -0,0 +1,16 @@ + + + + + + Zooming Text Animation + + + +
+
+

WELCOME TO BEAUTIFY

+
+
+ + \ No newline at end of file diff --git a/Components/Text-Animations/Zooming-text-animation/style.css b/Components/Text-Animations/Zooming-text-animation/style.css new file mode 100644 index 00000000..c85f4e2f --- /dev/null +++ b/Components/Text-Animations/Zooming-text-animation/style.css @@ -0,0 +1,32 @@ +body { + background-color: rgb(214, 30, 214); + margin: 0; + height: 100vh; + display: flex; + align-items: center; + justify-content: center; +} + +.main { + background-color: rgb(214, 30, 214); + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} + +@keyframes zoom{ + from{font-size:medium} + to{font-size:larger} +} +.text { + background-color: white; + border-radius: 10px; + height:100px; + width:550px; + text-align: center; + animation-name: zoom; + animation-duration: 1s; + animation-delay:0s; + animation-iteration-count: infinite; +} \ No newline at end of file From 3ca6f5311e882140c38123090b2ca43b9a51ff71 Mon Sep 17 00:00:00 2001 From: Shourya Date: Fri, 9 Aug 2024 13:30:48 +0530 Subject: [PATCH 2/5] added lineup card #1299 --- Components/Cards/LineUp-Card/index.html | 81 +++++++++++++++++ Components/Cards/LineUp-Card/style.css | 110 ++++++++++++++++++++++++ 2 files changed, 191 insertions(+) create mode 100644 Components/Cards/LineUp-Card/index.html create mode 100644 Components/Cards/LineUp-Card/style.css diff --git a/Components/Cards/LineUp-Card/index.html b/Components/Cards/LineUp-Card/index.html new file mode 100644 index 00000000..e0ea2df8 --- /dev/null +++ b/Components/Cards/LineUp-Card/index.html @@ -0,0 +1,81 @@ + + + + + + + Lineup Card + + +
+
+

LineUp Card

+

Your Productive week at a glance

+
+ +
+
+

Monday

+

Morning: [Your Task]

+

Afternoon: [Your Task]

+

Evening: [Your Task]

+
+
+

Tuesday

+

Morning: [Your Task]

+

Afternoon: [Your Task]

+

Evening: [Your Task]

+
+
+

Wednesday

+

Morning: [Your Task]

+

Afternoon: [Your Task]

+

Evening: [Your Task]

+
+
+

Thursday

+

Morning: [Your Task]

+

Afternoon: [Your Task]

+

Evening: [Your Task]

+
+
+

Friday

+

Morning: [Your Task]

+

Afternoon: [Your Task]

+

Evening: [Your Task]

+
+
+

Saturday

+

Morning: [Your Task]

+

Afternoon: [Your Task]

+

Evening: [Your Task]

+
+
+

Sunday

+

Morning: [Your Task]

+

Afternoon: [Your Task]

+

Evening: [Your Task]

+
+
+ + +
+ + + \ No newline at end of file diff --git a/Components/Cards/LineUp-Card/style.css b/Components/Cards/LineUp-Card/style.css new file mode 100644 index 00000000..6c3e797f --- /dev/null +++ b/Components/Cards/LineUp-Card/style.css @@ -0,0 +1,110 @@ +body { + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; + background-color: rgb(214, 30, 214); + font-family: 'Arial', sans-serif; + } + + .lineup-card { + width: 800px; + height:max-content; + padding: 20px; + background-color: #f9f9f9; + border-radius: 10px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + color: #333; + } + .card-header{ + margin-top: 100px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + } + .card-header h2 { + font-size: 1.5em; + color: #004085; + margin-bottom: 5px; + } + + .card-header p { + font-size: 0.9em; + color: #777; + margin-bottom: 20px; + } + + .days-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 10px; + width:700px; + } + + .day-column { + background-color: #e9ecef; + border-radius: 8px; + padding: 10px; + text-align: center; + } + + .day-column h3 { + font-size: 1.2em; + margin-bottom: 10px; + color: #004085; + } + + .time-slot { + font-size: 0.9em; + margin-bottom: 5px; + color: #495057; + } + + .task { + font-weight: bold; + color: #007bff; + } + + .card-footer { + margin-top: 20px; + } + + .goals-section, + .notes-section, + .inspiration-section { + margin-bottom: 15px; + } + + .goals-section h4, + .notes-section h4 { + font-size: 1em; + color: #004085; + margin-bottom: 10px; + } + + .goals-section ul { + list-style-type: none; + padding: 0; + } + + .goals-section ul li { + margin-bottom: 5px; + } + + .notes-section p { + font-size: 0.9em; + color: #495057; + padding: 5px; + background-color: #e9ecef; + border-radius: 5px; + } + + .inspiration-section p { + font-size: 0.8em; + color: #6c757d; + font-style: italic; + text-align: center; + } + \ No newline at end of file From a08f5885312d0559a0fa9b2872fc2197fa355545 Mon Sep 17 00:00:00 2001 From: Shourya Date: Fri, 9 Aug 2024 13:43:51 +0530 Subject: [PATCH 3/5] issue #1299 --- Components/Cards/LineUp-Card/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components/Cards/LineUp-Card/style.css b/Components/Cards/LineUp-Card/style.css index 6c3e797f..dd4018a6 100644 --- a/Components/Cards/LineUp-Card/style.css +++ b/Components/Cards/LineUp-Card/style.css @@ -9,7 +9,7 @@ body { } .lineup-card { - width: 800px; + width: 700px; height:max-content; padding: 20px; background-color: #f9f9f9; From 5da014178747d29854f9be26754e8af6a6ab5e53 Mon Sep 17 00:00:00 2001 From: Shourya Date: Fri, 9 Aug 2024 18:04:12 +0530 Subject: [PATCH 4/5] updated issue #1299 --- Components/Cards/LineUp-Card/index.html | 1 - Components/Cards/LineUp-Card/style.css | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Components/Cards/LineUp-Card/index.html b/Components/Cards/LineUp-Card/index.html index e0ea2df8..93634c4e 100644 --- a/Components/Cards/LineUp-Card/index.html +++ b/Components/Cards/LineUp-Card/index.html @@ -10,7 +10,6 @@

LineUp Card

-

Your Productive week at a glance

diff --git a/Components/Cards/LineUp-Card/style.css b/Components/Cards/LineUp-Card/style.css index dd4018a6..945afdad 100644 --- a/Components/Cards/LineUp-Card/style.css +++ b/Components/Cards/LineUp-Card/style.css @@ -18,7 +18,7 @@ body { color: #333; } .card-header{ - margin-top: 100px; + margin-top: 150px; display: flex; flex-direction: column; justify-content: center; From eb6df65d0ecbd141769d11421e72f826d72c3d42 Mon Sep 17 00:00:00 2001 From: Rakesh Roshan Date: Sat, 10 Aug 2024 19:03:56 +0530 Subject: [PATCH 5/5] Delete Components/Text-Animations/Zooming-text-animation directory --- .../Zooming-text-animation/index.html | 16 ---------- .../Zooming-text-animation/style.css | 32 ------------------- 2 files changed, 48 deletions(-) delete mode 100644 Components/Text-Animations/Zooming-text-animation/index.html delete mode 100644 Components/Text-Animations/Zooming-text-animation/style.css diff --git a/Components/Text-Animations/Zooming-text-animation/index.html b/Components/Text-Animations/Zooming-text-animation/index.html deleted file mode 100644 index 9c754195..00000000 --- a/Components/Text-Animations/Zooming-text-animation/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - Zooming Text Animation - - - -
-
-

WELCOME TO BEAUTIFY

-
-
- - \ No newline at end of file diff --git a/Components/Text-Animations/Zooming-text-animation/style.css b/Components/Text-Animations/Zooming-text-animation/style.css deleted file mode 100644 index c85f4e2f..00000000 --- a/Components/Text-Animations/Zooming-text-animation/style.css +++ /dev/null @@ -1,32 +0,0 @@ -body { - background-color: rgb(214, 30, 214); - margin: 0; - height: 100vh; - display: flex; - align-items: center; - justify-content: center; -} - -.main { - background-color: rgb(214, 30, 214); - display: flex; - justify-content: center; - align-items: center; - flex-direction: column; -} - -@keyframes zoom{ - from{font-size:medium} - to{font-size:larger} -} -.text { - background-color: white; - border-radius: 10px; - height:100px; - width:550px; - text-align: center; - animation-name: zoom; - animation-duration: 1s; - animation-delay:0s; - animation-iteration-count: infinite; -} \ No newline at end of file