diff options
| author | Salman Faris <farissalmannbr@gmail.com> | 2025-03-21 08:53:29 +0530 |
|---|---|---|
| committer | Salman Faris <farissalmannbr@gmail.com> | 2025-03-21 08:53:29 +0530 |
| commit | 03fb25d854f9676b99ed98e259bb9a119aa30834 (patch) | |
| tree | 43d535e3604ca5d4a3aa6475776f9969dcc7af7a | |
| parent | b5f2e48bd46734c9b404f97a276e442aca9deef9 (diff) | |
feat:fix image size issue
| -rw-r--r-- | docs/css/style.css | 5 | ||||
| -rw-r--r-- | docs/img/Ashish.png | bin | 0 -> 227959 bytes | |||
| -rw-r--r-- | docs/index.html | 5 |
3 files changed, 7 insertions, 3 deletions
diff --git a/docs/css/style.css b/docs/css/style.css index 17e8c32..b8ee453 100644 --- a/docs/css/style.css +++ b/docs/css/style.css @@ -148,6 +148,7 @@ a:hover, a:focus, a:active, a:visited { .speaker .feature { width: 31.333333%; + height: 300px; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; @@ -160,7 +161,9 @@ a:hover, a:focus, a:active, a:visited { transform: translateY(-10px); } .speaker-img { - max-width: 40%; + /* max-width: 40%; */ + object-fit: cover; + width: 140px; border: 4px solid #efefef; border-radius: 50%; } diff --git a/docs/img/Ashish.png b/docs/img/Ashish.png Binary files differnew file mode 100644 index 0000000..561f7fc --- /dev/null +++ b/docs/img/Ashish.png diff --git a/docs/index.html b/docs/index.html index f150135..77fcdf5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -91,6 +91,7 @@ <!-- End: Desc --> <hr> <!-- Start: Speakers --> + <div class="row me-row content-ct speaker" id="speakers"> <h2 class="row-title">Meet the Speakers</h2> <div class="col-md-4 col-sm-6 feature"> @@ -112,12 +113,12 @@ </ul> </div> <div class="col-md-4 col-sm-6 feature"> - <img src="img/speaker-1.png" class="speaker-img"> + <img src="img/Ashish.png" class="speaker-img"> <h3>Ashish Joy</h3> <p>Student</p> <ul class="speaker-social"> <li><a href="https://twitter.com/#"><span class="ti-twitter-alt"></span></a></li> - <li><a href="https://www.linkedin.com/in/#"><span class="ti-linkedin"></span></a></li> + <li><a href="https://www.linkedin.com/in/ashishjoy-mr"><span class="ti-linkedin"></span></a></li> </ul> </div> <div class="col-md-4 col-sm-6 feature"> |
