From 9bf781a753f9d676ab766ae5500f0131d596eeba Mon Sep 17 00:00:00 2001 From: bambamshivam Date: Sat, 23 Jan 2021 20:31:48 +0530 Subject: [PATCH 01/11] Add files via upload --- css_is.css | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++ iseries.html | 80 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 183 insertions(+) create mode 100644 css_is.css create mode 100644 iseries.html diff --git a/css_is.css b/css_is.css new file mode 100644 index 0000000..49b422d --- /dev/null +++ b/css_is.css @@ -0,0 +1,103 @@ +@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900); + +html, +body { + -moz-box-sizing: border-box; + box-sizing: border-box; + height: 100%; + width: 100%; + background: #FFF; + font-family: 'Lato', sans-serif; + font-weight: 400; +} + +.wrapper { + display: table; + height: 100%; + width: 100%; +} + +.container-fostrap { + display: table-cell; + padding: 1em; + text-align: center; + vertical-align: middle; +} +.fostrap-logo { + width: 100px; + margin-bottom:15px +} +.card { + display: block; + margin-bottom: 20px; + line-height: 1.42857143; + background-color: #fff; + border-radius: 2px; + box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); + transition: box-shadow .25s; +} +.card:hover { + box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); +} +.img-card { + width: 100%; + height:200px; + border-top-left-radius:2px; + border-top-right-radius:2px; + display:block; + overflow: hidden; +} +.img-card img{ + width: 100%; + height: 200px; + object-fit:cover; + transition: all .25s ease; +} +.card-content { + padding:15px; + text-align:left; +} +.card-title { + margin-top:0px; + font-weight: 500; + font-size: 1.50em; + text-align: center; +} +.card-title a { + color: #000; + text-decoration: none !important; +} +.card-read-more { + border-top: 1px solid #D4D4D4; +} +.card-read-more a { + text-decoration: none !important; + padding:10px; + font-weight:600; + text-transform: uppercase; + opacity: 0.87; +} + +@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900); + + +body.dark { + color: rgba(255,255,255,0.6); + background-color: #121212; +} +.dark .card { + background-color: #121212; + box-shadow: 0 2px 5px 0 grey,0 2px 10px 0 grey; +} +.dark .card:hover { + box-shadow: 0 8px 17px 0 grey,0 6px 20px 0 grey; +} +.dark .card-title a { + color: rgba(255,255,255,0.85); +} +.dark .card-read-more { + border-top: 1px solid rgba(255,255,255,0.85); +} +.dark .card-read-more a { + opacity: 0.7; +} \ No newline at end of file diff --git a/iseries.html b/iseries.html new file mode 100644 index 0000000..b512acd --- /dev/null +++ b/iseries.html @@ -0,0 +1,80 @@ + + + + + + + + + + + + +
+
+
+
+
+ + + +
+
+
+
+
+ + + + \ No newline at end of file From 26c4ddeb449cabfc2f57d9aeaf96a336c421dae8 Mon Sep 17 00:00:00 2001 From: bambamshivam Date: Sat, 23 Jan 2021 20:33:34 +0530 Subject: [PATCH 02/11] Delete css_is.css --- css_is.css | 103 ----------------------------------------------------- 1 file changed, 103 deletions(-) delete mode 100644 css_is.css diff --git a/css_is.css b/css_is.css deleted file mode 100644 index 49b422d..0000000 --- a/css_is.css +++ /dev/null @@ -1,103 +0,0 @@ -@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900); - -html, -body { - -moz-box-sizing: border-box; - box-sizing: border-box; - height: 100%; - width: 100%; - background: #FFF; - font-family: 'Lato', sans-serif; - font-weight: 400; -} - -.wrapper { - display: table; - height: 100%; - width: 100%; -} - -.container-fostrap { - display: table-cell; - padding: 1em; - text-align: center; - vertical-align: middle; -} -.fostrap-logo { - width: 100px; - margin-bottom:15px -} -.card { - display: block; - margin-bottom: 20px; - line-height: 1.42857143; - background-color: #fff; - border-radius: 2px; - box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); - transition: box-shadow .25s; -} -.card:hover { - box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); -} -.img-card { - width: 100%; - height:200px; - border-top-left-radius:2px; - border-top-right-radius:2px; - display:block; - overflow: hidden; -} -.img-card img{ - width: 100%; - height: 200px; - object-fit:cover; - transition: all .25s ease; -} -.card-content { - padding:15px; - text-align:left; -} -.card-title { - margin-top:0px; - font-weight: 500; - font-size: 1.50em; - text-align: center; -} -.card-title a { - color: #000; - text-decoration: none !important; -} -.card-read-more { - border-top: 1px solid #D4D4D4; -} -.card-read-more a { - text-decoration: none !important; - padding:10px; - font-weight:600; - text-transform: uppercase; - opacity: 0.87; -} - -@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900); - - -body.dark { - color: rgba(255,255,255,0.6); - background-color: #121212; -} -.dark .card { - background-color: #121212; - box-shadow: 0 2px 5px 0 grey,0 2px 10px 0 grey; -} -.dark .card:hover { - box-shadow: 0 8px 17px 0 grey,0 6px 20px 0 grey; -} -.dark .card-title a { - color: rgba(255,255,255,0.85); -} -.dark .card-read-more { - border-top: 1px solid rgba(255,255,255,0.85); -} -.dark .card-read-more a { - opacity: 0.7; -} \ No newline at end of file From 69607c536523d61a1d2955f563c791a02385fc46 Mon Sep 17 00:00:00 2001 From: bambamshivam Date: Sat, 23 Jan 2021 20:33:49 +0530 Subject: [PATCH 03/11] Delete iseries.html --- iseries.html | 80 ---------------------------------------------------- 1 file changed, 80 deletions(-) delete mode 100644 iseries.html diff --git a/iseries.html b/iseries.html deleted file mode 100644 index b512acd..0000000 --- a/iseries.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - -
-
-
-
-
- - - -
-
-
-
-
- - - - \ No newline at end of file From f711784efbf43b2d49671cd620da50c650203e57 Mon Sep 17 00:00:00 2001 From: bambamshivam Date: Sat, 23 Jan 2021 20:36:19 +0530 Subject: [PATCH 04/11] Add files via upload --- New folder/css_is.css | 103 ++++++++++++++++++++++++++++++++++++++++ New folder/iseries.html | 80 +++++++++++++++++++++++++++++++ 2 files changed, 183 insertions(+) create mode 100644 New folder/css_is.css create mode 100644 New folder/iseries.html diff --git a/New folder/css_is.css b/New folder/css_is.css new file mode 100644 index 0000000..49b422d --- /dev/null +++ b/New folder/css_is.css @@ -0,0 +1,103 @@ +@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900); + +html, +body { + -moz-box-sizing: border-box; + box-sizing: border-box; + height: 100%; + width: 100%; + background: #FFF; + font-family: 'Lato', sans-serif; + font-weight: 400; +} + +.wrapper { + display: table; + height: 100%; + width: 100%; +} + +.container-fostrap { + display: table-cell; + padding: 1em; + text-align: center; + vertical-align: middle; +} +.fostrap-logo { + width: 100px; + margin-bottom:15px +} +.card { + display: block; + margin-bottom: 20px; + line-height: 1.42857143; + background-color: #fff; + border-radius: 2px; + box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); + transition: box-shadow .25s; +} +.card:hover { + box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); +} +.img-card { + width: 100%; + height:200px; + border-top-left-radius:2px; + border-top-right-radius:2px; + display:block; + overflow: hidden; +} +.img-card img{ + width: 100%; + height: 200px; + object-fit:cover; + transition: all .25s ease; +} +.card-content { + padding:15px; + text-align:left; +} +.card-title { + margin-top:0px; + font-weight: 500; + font-size: 1.50em; + text-align: center; +} +.card-title a { + color: #000; + text-decoration: none !important; +} +.card-read-more { + border-top: 1px solid #D4D4D4; +} +.card-read-more a { + text-decoration: none !important; + padding:10px; + font-weight:600; + text-transform: uppercase; + opacity: 0.87; +} + +@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900); + + +body.dark { + color: rgba(255,255,255,0.6); + background-color: #121212; +} +.dark .card { + background-color: #121212; + box-shadow: 0 2px 5px 0 grey,0 2px 10px 0 grey; +} +.dark .card:hover { + box-shadow: 0 8px 17px 0 grey,0 6px 20px 0 grey; +} +.dark .card-title a { + color: rgba(255,255,255,0.85); +} +.dark .card-read-more { + border-top: 1px solid rgba(255,255,255,0.85); +} +.dark .card-read-more a { + opacity: 0.7; +} \ No newline at end of file diff --git a/New folder/iseries.html b/New folder/iseries.html new file mode 100644 index 0000000..b512acd --- /dev/null +++ b/New folder/iseries.html @@ -0,0 +1,80 @@ + + + + + + + + + + + + +
+
+
+
+
+ + + +
+
+
+
+
+ + + + \ No newline at end of file From 9238c9e968ccb6b83d0cee48d09f0aa5ea77f67b Mon Sep 17 00:00:00 2001 From: Subhalingam D Date: Sat, 23 Jan 2021 21:05:49 +0530 Subject: [PATCH 05/11] update css path --- New folder/iseries.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/New folder/iseries.html b/New folder/iseries.html index b512acd..269770f 100644 --- a/New folder/iseries.html +++ b/New folder/iseries.html @@ -4,7 +4,7 @@ - + From fc66b21fab07098d7d7b44eb534e3fc93525ab02 Mon Sep 17 00:00:00 2001 From: bambamshivam Date: Sun, 24 Jan 2021 12:18:23 +0530 Subject: [PATCH 06/11] Update iseries.html --- New folder/iseries.html | 49 +++++++---------------------------------- 1 file changed, 8 insertions(+), 41 deletions(-) diff --git a/New folder/iseries.html b/New folder/iseries.html index 269770f..c157284 100644 --- a/New folder/iseries.html +++ b/New folder/iseries.html @@ -3,11 +3,11 @@ - + + + + - - -
@@ -25,42 +25,8 @@

Talk with Prof 1

- - - - - -
-
- - - -
-

- Talk with Prof 1 - -

+

This is the description of the video.

+ Sun,24 Dec 2021 18:50:18 +0530
@@ -77,4 +43,5 @@

- \ No newline at end of file + + From 3bf80f0d5ea9abb5f683db07e36ca24b707c823c Mon Sep 17 00:00:00 2001 From: bambamshivam Date: Sun, 24 Jan 2021 12:19:18 +0530 Subject: [PATCH 07/11] Update css_is.css --- New folder/css_is.css | 36 +++++++++++++++++++++++++++--------- 1 file changed, 27 insertions(+), 9 deletions(-) diff --git a/New folder/css_is.css b/New folder/css_is.css index 49b422d..506ec51 100644 --- a/New folder/css_is.css +++ b/New folder/css_is.css @@ -1,4 +1,4 @@ -@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900); + html, body { @@ -10,6 +10,12 @@ body { font-family: 'Lato', sans-serif; font-weight: 400; } + +p{ + padding: 10px 2px 12px; + color: #1f1f1f; + font-size: 1.15em; +} .wrapper { display: table; @@ -33,7 +39,6 @@ body { line-height: 1.42857143; background-color: #fff; border-radius: 2px; - box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); transition: box-shadow .25s; } .card:hover { @@ -53,15 +58,23 @@ body { object-fit:cover; transition: all .25s ease; } +.date{ + float: right; + opacity: 0.82; + font-style: italic; + font-size: 0.8em; +} .card-content { padding:15px; text-align:left; } .card-title { margin-top:0px; - font-weight: 500; - font-size: 1.50em; - text-align: center; + font-weight: 600; + font-size: 1.5em; + text-transform: capitalize; + padding: 5px 2px 2px; + opacity:0.87; } .card-title a { color: #000; @@ -69,6 +82,7 @@ body { } .card-read-more { border-top: 1px solid #D4D4D4; + background-color: #6c757d42; } .card-read-more a { text-decoration: none !important; @@ -86,11 +100,11 @@ body.dark { background-color: #121212; } .dark .card { - background-color: #121212; - box-shadow: 0 2px 5px 0 grey,0 2px 10px 0 grey; + background-color: #212529de; } .dark .card:hover { - box-shadow: 0 8px 17px 0 grey,0 6px 20px 0 grey; + transform: scale(1.025); + transition: all .25s ease; } .dark .card-title a { color: rgba(255,255,255,0.85); @@ -100,4 +114,8 @@ body.dark { } .dark .card-read-more a { opacity: 0.7; -} \ No newline at end of file +} + +.date .dark{ + opacity: 0.67; +} From a52d3c1ceb61fa749981ddedd587d2e8fa826279 Mon Sep 17 00:00:00 2001 From: bambamshivam Date: Mon, 25 Jan 2021 11:38:29 +0530 Subject: [PATCH 08/11] Update css_is.css --- New folder/css_is.css | 105 +++++++++++++++++++++++++++++------------- 1 file changed, 72 insertions(+), 33 deletions(-) diff --git a/New folder/css_is.css b/New folder/css_is.css index 506ec51..7190c0a 100644 --- a/New folder/css_is.css +++ b/New folder/css_is.css @@ -1,21 +1,42 @@ - html, body { - -moz-box-sizing: border-box; - box-sizing: border-box; - height: 100%; - width: 100%; - background: #FFF; font-family: 'Lato', sans-serif; font-weight: 400; + font-size: 15px; + line-height: 22px; + color: #212112; + background-color: #fbfbfb; + overflow-x: hidden; + transition: all 200ms linear; } p{ + margin: 0; + padding-top: 10px; + font-size: 18px; + line-height: 1.3; + transition: all 500ms linear; + -webkit-transition: all 500ms linear; + -o-transition: all 500ms linear; + -ms-transition: all 500ms linear; padding: 10px 2px 12px; color: #1f1f1f; font-size: 1.15em; } + +h4{ + font-family: 'Open Sans'; + font-size: 24px; + line-height: 1; + margin-bottom: 0; + font-weight: 500; + color: #212112; + transition: all 500ms linear; + -webkit-transition: all 500ms linear; + -o-transition: all 500ms linear; + -ms-transition: all 500ms linear; +} .wrapper { display: table; @@ -34,15 +55,18 @@ p{ margin-bottom:15px } .card { - display: block; - margin-bottom: 20px; - line-height: 1.42857143; - background-color: #fff; - border-radius: 2px; - transition: box-shadow .25s; + position: relative; + width: calc(100%); + margin: 4px 0 12px; + padding: 16px 12px 23px; + transition: all .4s ease-in-out; + background-color: #fcfcfc; + height: calc(100% - 16px); } .card:hover { - box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); + transform: scale(1.025); + box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.4); + background-color: #fafafa; } .img-card { width: 100%; @@ -60,6 +84,9 @@ p{ } .date{ float: right; + left: 14px; + right: 9px; + bottom: 4px; opacity: 0.82; font-style: italic; font-size: 0.8em; @@ -69,27 +96,28 @@ p{ text-align:left; } .card-title { - margin-top:0px; - font-weight: 600; font-size: 1.5em; text-transform: capitalize; padding: 5px 2px 2px; - opacity:0.87; + font-weight: 600; } .card-title a { color: #000; text-decoration: none !important; } -.card-read-more { - border-top: 1px solid #D4D4D4; - background-color: #6c757d42; -} .card-read-more a { - text-decoration: none !important; - padding:10px; - font-weight:600; - text-transform: uppercase; - opacity: 0.87; + background-color: white; + position: relative; + border-radius: 6px; + box-shadow: 0 3px 7px rgba(0,0,0,0.4); + user-select: none; + transition: all 0.4s ease-in-out; + cursor:pointer; + text-align: center; + padding: 12px 9px; +} +.card-read-more a:hover{ + background-color: #eaeaea; } @import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900); @@ -99,23 +127,34 @@ body.dark { color: rgba(255,255,255,0.6); background-color: #121212; } +body.dark span{ + transition-delay: 0ms !important; +} +body.dark h4{ + color: #fff; + opacity: 0.87; +} +body.dark p{ + opacity: 0.6; + color: rgba(255,255,255,0.78); +} .dark .card { - background-color: #212529de; + background-color: #212121; } .dark .card:hover { - transform: scale(1.025); - transition: all .25s ease; + background-color: #2f2f2f; } .dark .card-title a { color: rgba(255,255,255,0.85); } -.dark .card-read-more { - border-top: 1px solid rgba(255,255,255,0.85); -} .dark .card-read-more a { - opacity: 0.7; + background-color: #212121; + +} +.dark .card-read-more a:hover{ + background-color: #2f2f2f; } .date .dark{ - opacity: 0.67; + opacity: 0.65; } From 08f2c9972d61f4a4507020708a8a6b5c3e0e1645 Mon Sep 17 00:00:00 2001 From: Subhalingam D Date: Mon, 25 Jan 2021 18:46:01 +0530 Subject: [PATCH 09/11] update style --- New folder/css_is.css | 187 ++++++++++++++++++++++------------------ New folder/iseries.html | 103 +++++++++++++++------- 2 files changed, 174 insertions(+), 116 deletions(-) diff --git a/New folder/css_is.css b/New folder/css_is.css index 7190c0a..66e8814 100644 --- a/New folder/css_is.css +++ b/New folder/css_is.css @@ -9,8 +9,12 @@ body { background-color: #fbfbfb; overflow-x: hidden; transition: all 200ms linear; + height:100%; + margin:0; +} +body{ + padding-top:25px; } - p{ margin: 0; padding-top: 10px; @@ -37,124 +41,137 @@ h4{ -o-transition: all 500ms linear; -ms-transition: all 500ms linear; } - -.wrapper { - display: table; - height: 100%; - width: 100%; -} -.container-fostrap { - display: table-cell; - padding: 1em; - text-align: center; - vertical-align: middle; +body.dark { + color: rgba(255,255,255,0.6); + background-color: #121212; } -.fostrap-logo { - width: 100px; - margin-bottom:15px +body.dark span{ + transition-delay: 0ms !important; +} +body.dark h4{ + color: #fff; + opacity: 0.87; } -.card { +body.dark p{ + opacity: 0.6; + color: rgba(255,255,255,0.78); +} + +/* -------------------------------- +MAIN COMPONENTS +-------------------------------- */ + +#is{} + +#is .is-outer{ + padding-bottom: 25px; +} + +#is .is-card { position: relative; width: calc(100%); - margin: 4px 0 12px; - padding: 16px 12px 23px; + margin: 5px 0 15px; transition: all .4s ease-in-out; background-color: #fcfcfc; + border-radius: 0 0px 10px 10px; height: calc(100% - 16px); } -.card:hover { +#is .is-card:hover { transform: scale(1.025); box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.4); background-color: #fafafa; } -.img-card { +#is .is-img { width: 100%; - height:200px; - border-top-left-radius:2px; - border-top-right-radius:2px; - display:block; - overflow: hidden; -} -.img-card img{ + height: 200px; + /* + border-top-left-radius: 2px; + border-top-right-radius: 2px; + */ + display: block; + overflow: hidden; + opacity: 0.9; +} +#is .is-img img{ width: 100%; height: 200px; - object-fit:cover; - transition: all .25s ease; -} -.date{ + width: -moz-available; + object-fit: cover; + transition: all 1s cubic-bezier(.29,.64,.45,.94); +} +#is .is-card:hover .is-img img{ + transform: scale(1.02); + overflow: hidden; + opacity: 1; +} +#is .is-card .is-content { + padding: 15px 10px 60px; + text-align: left; + position: relative; +} +#is .is-card .is-title{ + font-size: 1.5em; + padding: 7px 2px 2px; + font-weight: 600; +} +#is .is-card .is-summ{ + padding: 10px 2px 12px; + color: #1f1f1f; + font-size: 1.15em; +} +#is .is-card .is-date{ + /* float: right; left: 14px; right: 9px; bottom: 4px; + */ + padding: 2px; opacity: 0.82; font-style: italic; - font-size: 0.8em; -} -.card-content { - padding:15px; - text-align:left; -} -.card-title { - font-size: 1.5em; - text-transform: capitalize; - padding: 5px 2px 2px; - font-weight: 600; + font-size: 0.85em; } -.card-title a { - color: #000; - text-decoration: none !important; -} -.card-read-more a { - background-color: white; - position: relative; - border-radius: 6px; - box-shadow: 0 3px 7px rgba(0,0,0,0.4); +#is .is-card .is-watch a { + display: block; + position: absolute; + bottom: 0; user-select: none; - transition: all 0.4s ease-in-out; - cursor:pointer; - text-align: center; - padding: 12px 9px; + border-radius: 0 0px 10px 10px; + text-align: center; + padding: 9px 16px; + transition: all .3s ease-in-out; + background-color: rgba(129, 103, 169,.8); + color: #fafafa; + text-decoration: none; } -.card-read-more a:hover{ - background-color: #eaeaea; +#is .is-card .is-watch a:hover{ + background-color: #6c5393; } -@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900); - - -body.dark { - color: rgba(255,255,255,0.6); - background-color: #121212; -} -body.dark span{ - transition-delay: 0ms !important; -} -body.dark h4{ - color: #fff; - opacity: 0.87; -} -body.dark p{ - opacity: 0.6; - color: rgba(255,255,255,0.78); -} -.dark .card { +.dark #is .is-card { background-color: #212121; } -.dark .card:hover { +.dark #is .is-card:hover { background-color: #2f2f2f; } -.dark .card-title a { +.dark #is .is-title{ color: rgba(255,255,255,0.85); } -.dark .card-read-more a { - background-color: #212121; - +.dark #is .is-summ{ + color: rgba(255,255,255,0.78); } -.dark .card-read-more a:hover{ - background-color: #2f2f2f; +.dark #is .is-date{ + opacity: 0.65; } +.dark #is .is-watch a { + background-color: rgba(30, 144, 255, .8); + color: rgba(255,255,255,.8); -.date .dark{ - opacity: 0.65; } +.dark #is .is-watch a:hover{ + background-color: #0080ff; + color: rgba(255,255,255,.98); +} + + diff --git a/New folder/iseries.html b/New folder/iseries.html index c157284..210dfcd 100644 --- a/New folder/iseries.html +++ b/New folder/iseries.html @@ -8,38 +8,79 @@ + - -
-
-
-
-
-
-
- - - -
-

- Talk with Prof 1 - -

-

This is the description of the video.

- Sun,24 Dec 2021 18:50:18 +0530 -
- -
-
-
-
-
-
-
+ +
+
+
+
+ + + +
+

Talk with Prof 1

+

This is the description of the video.This is the description of the video. This is the description of the video. This is the description of the video. This is the description of the video.

+ Sun,24 Dec 2021 18:50:18 +0530 +
+
+   Watch +
+
+
+ +
+
+ + + +
+

Talk with Prof 2

+

This is the description of the video.

+ Sun,24 Dec 2021 18:50:18 +0530 +
+
+   Watch +
+
+
+ +
+
+ + + +
+

Talk with Prof 3

+

This is the description of the video.

+ Sun,24 Dec 2021 18:50:18 +0530 +
+
+   Watch +
+
+
+ +
+
+ + + +
+

Talk with Prof 4

+

This is the description of the video.

+ Sun,24 Dec 2021 18:50:18 +0530 +
+
+   Watch +
+
+
+ + + +
+
From 84a1039915544fc3293bd49522689e2ccc629061 Mon Sep 17 00:00:00 2001 From: Subhalingam D Date: Mon, 25 Jan 2021 18:55:58 +0530 Subject: [PATCH 10/11] badge for upcoming events --- New folder/css_is.css | 11 +++++++++++ New folder/iseries.html | 2 ++ 2 files changed, 13 insertions(+) diff --git a/New folder/css_is.css b/New folder/css_is.css index 66e8814..31ea2fd 100644 --- a/New folder/css_is.css +++ b/New folder/css_is.css @@ -92,6 +92,7 @@ MAIN COMPONENTS display: block; overflow: hidden; opacity: 0.9; + position: relative; } #is .is-img img{ width: 100%; @@ -100,6 +101,16 @@ MAIN COMPONENTS object-fit: cover; transition: all 1s cubic-bezier(.29,.64,.45,.94); } +#is .is-img .is-upcoming{ + position: absolute; + bottom: 3px; + left: 3px; + padding: 2px 7px 2px 6px; + background-color: #ca3e47; + color: #fafafa; + opacity: 0.9; + font-size: 0.7em; +} #is .is-card:hover .is-img img{ transform: scale(1.02); overflow: hidden; diff --git a/New folder/iseries.html b/New folder/iseries.html index 210dfcd..c04a8c9 100644 --- a/New folder/iseries.html +++ b/New folder/iseries.html @@ -17,6 +17,7 @@
+   23:23:23

Talk with Prof 1

@@ -33,6 +34,7 @@

Talk with Prof 1

+   Live

Talk with Prof 2

From 6cddf40e1ca6f3847b22fe53915d000d084de44b Mon Sep 17 00:00:00 2001 From: Subhalingam D Date: Tue, 26 Jan 2021 13:26:07 +0530 Subject: [PATCH 11/11] fix card height --- New folder/css_is.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/New folder/css_is.css b/New folder/css_is.css index 31ea2fd..7758c91 100644 --- a/New folder/css_is.css +++ b/New folder/css_is.css @@ -75,7 +75,7 @@ MAIN COMPONENTS transition: all .4s ease-in-out; background-color: #fcfcfc; border-radius: 0 0px 10px 10px; - height: calc(100% - 16px); + height: calc(100% - 20px); } #is .is-card:hover { transform: scale(1.025);