From 396b1d627d58a113f8e5d87cc970a49bc426f99f Mon Sep 17 00:00:00 2001 From: AdyaTech Date: Thu, 29 Jan 2026 14:31:51 +0530 Subject: [PATCH] Fixed the issue 839 regarding the Calander. --- Calander/AdyaTech/day70.css | 62 ++++++++++++++++++++++++++++++++++++ Calander/AdyaTech/day70.html | 37 +++++++++++++++++++++ 2 files changed, 99 insertions(+) create mode 100644 Calander/AdyaTech/day70.css create mode 100644 Calander/AdyaTech/day70.html diff --git a/Calander/AdyaTech/day70.css b/Calander/AdyaTech/day70.css new file mode 100644 index 000000000..7990ab481 --- /dev/null +++ b/Calander/AdyaTech/day70.css @@ -0,0 +1,62 @@ +@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300); + +.frame { + position: absolute; + top: 50%; + left: 50%; + width: 400px; + height: 400px; + margin-top: -200px; + margin-left: -200px; + border-radius: 2px; + box-shadow: 4px 8px 16px 0 rgba(0,0,0,0.1); + overflow: hidden; + background: #fff; + color: #333; + font-family: 'Open Sans', Helvetica, sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.container { + width: 100%; + display: grid; + grid-template-columns: 1fr 1fr; +} + +.grid-item { + height: 200px; + text-align: center; + background: #E27474; + color: white; + display: flex; + scale: 1; + flex-direction: column; + align-items: center; + justify-content: center; + transition: all 0.5s ease-in-out; +} + +.grid-item:hover { + box-shadow: inset 0 0 2px 4px #000000; +} + +.grid-item p { + font-size: 20px; + margin: 0; /* Remove default margin to avoid extra spacing */ +} + +.grid-item h1 { + font-size: 4em; + margin: 0; /* Remove default margin to avoid extra spacing */ +} + +.grid-item .konten { + line-height: 1; + transition: all 0.5s ease-in-out; +} + +.grid-item:hover .konten { + transform: scale(0.9); +} + \ No newline at end of file diff --git a/Calander/AdyaTech/day70.html b/Calander/AdyaTech/day70.html new file mode 100644 index 000000000..2cdd718e7 --- /dev/null +++ b/Calander/AdyaTech/day70.html @@ -0,0 +1,37 @@ + + + + CSS DAY 70 + + + + +
+
+
+
+

Friday

+

15

+
+
+
+
+

Saturday

+

16

+
+
+
+
+

Sunday

+

17

+
+
+
+
+

Monday

+

18

+
+
+
+ +