HomeCategoryLife

© 2025 osgbglobal.com, Tüm Hakları Saklıdır.

#menu-footer-menu-copyright{ display: flex; align-items: center; justify-content: flex-end; } #menu-footer-menu-copyright li{ display: inline-flex; float: none; margin-bottom:0px; }

© 2025 osgbglobal.com, Tüm Hakları Saklıdır.

Merhaba, Nasıl Yardımcı Olabiliriz?
.fixedButton { position: fixed; bottom: 65px; right: 30px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; z-index: 9; -webkit-transition: none; transition: none; } .fixedButton .close { position: absolute; top: 0; right: 0; height: 25px; width: 25px; font-size: 15px; background-color: rgba(34, 34, 34, 0.7); color: #ffd109; border-radius: 50%; -webkit-transform: translate(50%, -50%); transform: translate(50%, -50%); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .fixedButton .fixedButton-icon { width: 50px; height: 50px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background-color: #4AC959; border-radius: 50%; font-size: 30px; color: #fff; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); } .fixedButton .fixedButton-icon:hover { -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); } .fixedButton-content { --fixedButton-shadow: 0 3px 6px rgba(0,0,0,0.16); --fixedButton-bg-c: #fff; width: 190px; padding: 10px 10px; -webkit-box-shadow: var(--fixedButton-shadow); box-shadow: var(--fixedButton-shadow); margin-bottom: 20px; border-radius: 18px; position: relative; background-color: var(--fixedButton-bg-c); color: #303030; font-weight: 700; line-height: initial; font-size: 14px; } .fixedButton-content::before { --offset: 10px; content: ""; position: absolute; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); bottom: calc(0px - var(--offset)); width: 0; height: 0; border-left: var(--offset) solid transparent; border-right: var(--offset) solid transparent; border-top: var(--offset) solid var(--fixedButton-bg-c); -webkit-filter: drop-shadow(var(--fixedButton-shadow)); filter: drop-shadow(var(--fixedButton-shadow)); } document.querySelector('.fixedButton .close').addEventListener('click', function(e) { e.preventDefault(); document.querySelector('.fixedButton-content').style.display = 'none'; this.style.display = 'none'; });