CSS .rounded .fill.banner-link, .rounded .banner-inner, .rounded .fill { overflow: hidden!important; border-radius: 20px!important; -webkit-border-radius: 20px; -moz-border-radius: 20px; } .rounded, .rounded .img-inner { border-radius: 20px; }
Category Archives: HTML/CSS
It’s best to use images with the exact size for the given container. This ensures we do not force our users to download unnecessary data, and keeps the site as light as possible. Here is a quick guide on how to check the size of already uploaded picture, but it will also work for containers […]
p.pulsating { font-size: 13px; color: #bf5b5b; -webkit-animation: pulsate 3s ease-out; -webkit-animation-iteration-count: infinite; opacity: 0.5; } @-webkit-keyframes pulsate { 0% { opacity: 0.5; } 50% { opacity: 1.0; font-size:13.5px; } 100% { opacity: 0.5; } }