diff --git a/README.md b/README.md index ba882c8..02decdd 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,10 @@ # Impact-Wall A wall highlighting people and organizations that have a good impact + +# Demo +![Screenshot (210)](https://github.com/Upendra2003/Impact-Wall/assets/96371563/2bd864fc-33cc-4848-bdaa-f2aa1d6d8edd) + +![Screenshot (211)](https://github.com/Upendra2003/Impact-Wall/assets/96371563/77bda3f7-ea32-4a60-bb82-5bc0e0788368) + +![Screenshot (212)](https://github.com/Upendra2003/Impact-Wall/assets/96371563/56ed1b70-9aa2-4c64-92b3-0299823c9557) diff --git a/index.html b/index.html new file mode 100644 index 0000000..15ba74d --- /dev/null +++ b/index.html @@ -0,0 +1,127 @@ + + + + + Impact Wall + + + + + +
+ + + +
+ + + +
+
+

Our Participants

+
+
+
+
+ Photo of sunset +
Sierra Web Development • Owner
+

This is a company that builds websites, web apps and e-commerce solutions.

+
+
+
+
+ Photo of sunset +
ProVyuh
+

This is a company that builds websites, web .

+
+
+
+
+ Photo of sunset +
ProVyuh
+

This is a company that builds websites, web apps and e-commerce solutions.

+
+
+
+
+ Photo of sunset +
ProVyuh
+

This is a company that builds websites.

+
+
+
+ +
+
+ + + + + +
+
+
+
+
+ Impace Wall +

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum

+
+
1120 Lorem ipsum dolor sit amet, KC 179050, Chandigarh.
+
+01 2345 6789 12|+01 2345 6789 12
+
+
    +
  • +
  • +
  • +
  • +
  • +
+
+
+
+
+
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..c759198 --- /dev/null +++ b/script.js @@ -0,0 +1,34 @@ +jQuery(function($) { + $(window).on('scroll', function() { + if ($(this).scrollTop() >= 200) { + $('.navbar').addClass('fixed-top'); + } else if ($(this).scrollTop() == 0) { + $('.navbar').removeClass('fixed-top'); + } + }); + + function adjustNav() { + var winWidth = $(window).width(), + dropdown = $('.dropdown'), + dropdownMenu = $('.dropdown-menu'); + + if (winWidth >= 768) { + dropdown.on('mouseenter', function() { + $(this).addClass('show') + .children(dropdownMenu).addClass('show'); + }); + + dropdown.on('mouseleave', function() { + $(this).removeClass('show') + .children(dropdownMenu).removeClass('show'); + }); + } else { + dropdown.off('mouseenter mouseleave'); + } + } + + $(window).on('resize', adjustNav); + + adjustNav(); +}); + diff --git a/style.css b/style.css new file mode 100644 index 0000000..bf813b0 --- /dev/null +++ b/style.css @@ -0,0 +1,507 @@ +@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800'); +@import url('https://fonts.googleapis.com/css?family=Lobster'); +html { + font-size: 62.5%; +} + +/* cards css */ + +img{ + height:150px; + width:100%; + } + + .item{ + padding-left:5px; + padding-right:5px; + } + .item-card{ + transition:0.5s; + cursor:pointer; + } + .item-card-title{ + font-size:15px; + transition:1s; + cursor:pointer; + } + .item-card-title i{ + font-size:15px; + transition:1s; + cursor:pointer; + color:#ffa710 + } + .card-title i:hover{ + transform: scale(1.25) rotate(100deg); + color:#18d4ca; + + } + .card:hover{ + transform: scale(1.05); + box-shadow: 10px 10px 15px rgba(0,0,0,0.3); + } + .card-text{ + height:80px; + } + + .card::before, .card::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + transform: scale3d(0, 0, 1); + transition: transform .3s ease-out 0s; + background: rgba(255, 255, 255, 0.1); + content: ''; + pointer-events: none; + } + .card::before { + transform-origin: left top; + } + .card::after { + transform-origin: right bottom; + } + .card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after { + transform: scale3d(1, 1, 1); + } + +body { + font-family: 'Open Sans', sans-serif; + font-size: 1.6rem; + font-weight: 400; +} +h1 { + margin-bottom: 0.5em; + font-size: 3.6rem; +} +p { + margin-bottom: 0.5em; + font-size: 1.6rem; + line-height: 1.6; +} +.button { + display: inline-block; + margin-top: 20px; + padding: 8px 25px; + border-radius: 4px; +} +.button-primary { + position: relative; + background-color: #c0ca33; + color: #fff; + font-size: 1.8rem; + font-weight: 700; + transition: color 0.3s ease-in; + z-index: 1; +} +.button-primary:hover { + color: #c0ca33; + text-decoration: none; +} +.button-primary::after { + content: ''; + position: absolute; + bottom: 0; + left: 0; + right: 0; + top: 0; + background-color: #fff; + border-radius: 4px; + opacity: 0; + -webkit-transform: scaleX(0.8); + -ms-transform: scaleX(0.8); + transform: scaleX(0.8); + transition: all 0.3s ease-in; + z-index: -1; +} + +.form-control::placeholder { + font-size: 1.5rem; + color: #aaa; + font-style: italic; + outline: none; + } + + .form-control{ + width: 70%; + outline: none; + } + + .form-control:focus { + box-shadow: none; + } + + .form-control-underlined { + border-width: 0; + border-bottom-width: 5px; + height: 5px; + border-radius: 0; + padding-left: 0; + outline: none; + } + +.button-primary:hover::after { + opacity: 1; + -webkit-transform: scaleX(1); + -ms-transform: scaleX(1); + transform: scaleX(1); +} +.overlay::after { + content: ''; + position: absolute; + bottom: 0; + left: 0; + right: 0; + top: 0; + background-color: rgba(0, 0, 0, .3); +} +.header-area { + position: relative; + height: 100vh; + background-color: #190507; + /* background-image: linear-gradient(to bottom,#190507,#D2B863); */ + background-attachment: fixed; + background-position: center center; + background-repeat: no-repear; + background-size: cover; +} +.banner { + display: flex; + align-items: center; + position: relative; + height: 100%; + color: #fff; + text-align: center; + z-index: 1; +} +.banner h1 { + font-weight: 800; +} +.banner p { + font-weight: 700; +} +.navbar { + position: absolute; + left: 0; + top: 0; + padding: 0; + width: 100%; + transition: background 0.6s ease-in; + z-index: 99999; +} +.navbar .navbar-brand { + font-family: 'Lobster', cursive; + font-size: 2.5rem; +} + +.navbar-brand{ + font-family: 'Lobster'; +} + +.navbar .navbar-toggler { + position: relative; + height: 50px; + width: 50px; + border: none; + cursor: pointer; + outline: none; +} +.navbar .navbar-toggler .menu-icon-bar { + position: absolute; + left: 15px; + right: 15px; + height: 2px; + background-color: #fff; + opacity: 0; + -webkit-transform: translateY(-1px); + -ms-transform: translateY(-1px); + transform: translateY(-1px); + transition: all 0.3s ease-in; +} +.navbar .navbar-toggler .menu-icon-bar:first-child { + opacity: 1; + -webkit-transform: translateY(-1px) rotate(45deg); + -ms-sform: translateY(-1px) rotate(45deg); + transform: translateY(-1px) rotate(45deg); +} +.navbar .navbar-toggler .menu-icon-bar:last-child { + opacity: 1; + -webkit-transform: translateY(-1px) rotate(135deg); + -ms-sform: translateY(-1px) rotate(135deg); + transform: translateY(-1px) rotate(135deg); +} +.navbar .navbar-toggler.collapsed .menu-icon-bar { + opacity: 1; +} +.navbar .navbar-toggler.collapsed .menu-icon-bar:first-child { + -webkit-transform: translateY(-7px) rotate(0); + -ms-sform: translateY(-7px) rotate(0); + transform: translateY(-7px) rotate(0); +} +.navbar .navbar-toggler.collapsed .menu-icon-bar:last-child { + -webkit-transform: translateY(5px) rotate(0); + -ms-sform: translateY(5px) rotate(0); + transform: translateY(5px) rotate(0); +} +.navbar-dark .navbar-nav .nav-link { + position: relative; + color: #fff; + font-size: 1.6rem; +} +.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover { + color: #fff; +} +.navbar .dropdown-menu { + padding: 0; + background-color: rgba(0, 0, 0, .9); +} +.navbar .dropdown-menu .dropdown-item { + position: relative; + padding: 10px 20px; + color: #fff; + font-size: 1.4rem; + border-bottom: 1px solid rgba(255, 255, 255, .1); + transition: color 0.2s ease-in; +} +.navbar .dropdown-menu .dropdown-item:last-child { + border-bottom: none; +} +.navbar .dropdown-menu .dropdown-item:hover { + background: transparent; + color: #c0ca33; +} +.navbar .dropdown-menu .dropdown-item::before { + content: ''; + position: absolute; + bottom: 0; + left: 0; + top: 0; + width: 5px; + background-color: #c0ca33; + opacity: 0; + transition: opacity 0.2s ease-in; +} +.navbar .dropdown-menu .dropdown-item:hover::before { + opacity: 1; +} +.navbar.fixed-top { + position: fixed; + -webkit-animation: navbar-animation 0.6s; + animation: navbar-animation 0.6s; + background-color: rgba(0, 0, 0, .9); +} +.navbar.fixed-top.navbar-dark .navbar-nav .nav-link.active { + color: #c0ca33; +} +.navbar.fixed-top.navbar-dark .navbar-nav .nav-link::after { + background-color: #c0ca33; +} +.content { + padding: 120px 0; +} +@media screen and (max-width: 768px) { + .navbar-brand { + margin-left: 20px; + } + .navbar-nav { + padding: 0 20px; + background-color: rgba(0, 0, 0, .9); + } + .navbar.fixed-top .navbar-nav { + background: transparent; + } +} +@media screen and (min-width: 767px) { + .banner { + padding: 0 150px; + } + .banner h1 { + font-size: 5rem; + } + .banner p { + font-size: 2rem; + } + .navbar-dark .navbar-nav .nav-link { + padding: 23px 15px; + } + .navbar-dark .navbar-nav .nav-link::after { + content: ''; + position: absolute; + bottom: 15px; + left: 30%; + right: 30%; + height: 1px; + background-color: #fff; + -webkit-transform: scaleX(0); + -ms-transform: scaleX(0); + transform: scaleX(0); + transition: transform 0.1s ease-in; + } + .navbar-dark .navbar-nav .nav-link:hover::after { + -webkit-transform: scaleX(1); + -ms-transform: scaleX(1); + transform: scaleX(1); + } + .dropdown-menu { + min-width: 200px; + -webkit-animation: dropdown-animation 0.3s; + animation: dropdown-animation 0.3s; + -webkit-transform-origin: top; + -ms-transform-origin: top; + transform-origin: top; + } +} +@-webkit-keyframes navbar-animation { + 0% { + opacity: 0; + -webkit-transform: translateY(-100%); + -ms-transform: translateY(-100%); + transform: translateY(-100%); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes navbar-animation { + 0% { + opacity: 0; + -webkit-transform: translateY(-100%); + -ms-transform: translateY(-100%); + transform: translateY(-100%); + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + } +} +@-webkit-keyframes dropdown-animation { + 0% { + -webkit-transform: scaleY(0); + -ms-transform: scaleY(0); + transform: scaleY(0); + } + 75% { + -webkit-transform: scaleY(1.1); + -ms-transform: scaleY(1.1); + transform: scaleY(1.1); + } + 100% { + -webkit-transform: scaleY(1); + -ms-transform: scaleY(1); + transform: scaleY(1); + } +} +@keyframes dropdown-animation { + 0% { + -webkit-transform: scaleY(0); + -ms-transform: scaleY(0); + transform: scaleY(0); + } + 75% { + -webkit-transform: scaleY(1.1); + -ms-transform: scaleY(1.1); + transform: scaleY(1.1); + } + 100% { + -webkit-transform: scaleY(1); + -ms-transform: scaleY(1); + transform: scaleY(1); + } +} + + +/* footer */ + +img { + max-width: 100%; + height: auto; +} + section { + padding: 60px 0; + /* min-height: 100vh;*/ + } + ul { + margin: 0; + padding: 0; + list-style: none; + } +.contact-area { + border-bottom: 1px solid #1B0508; +} + +.contact-content p { + font-size: 15px; + margin: 30px 0 60px; + position: relative; +} + +.contact-content p::after { + background: #1B0508; + bottom: -30px; + content: ""; + height: 1px; + left: 50%; + position: absolute; + transform: translate(-50%); + width: 80%; +} + +.contact-content h6 { + color: #8b9199; + font-size: 15px; + font-weight: 400; + margin-bottom: 10px; +} + +.contact-content span { + color: #353c47; + margin: 0 10px; +} + +.contact-social { + margin-top: 30px; +} + +.contact-social > ul { + display: inline-flex; +} + +.contact-social ul li a { + border: 1px solid #8b9199; + color: white; + display: inline-block; + height: 40px; + margin: 0 10px; + padding-top: 7px; + transition: all 0.4s ease 0s; + width: 40px; +} + +.contact-social ul li a:hover { + border: 1px solid #FAB702; + color: #FAB702; +} + +.contact-content img { + max-width: 210px; +} + +section, footer { + background: #1B0508; + color: white; +} + +footer p { + padding: 40px 0; + text-align: center; + margin-bottom: -10px; +} + +footer img { + width: 44px; +} \ No newline at end of file