How to Manage Your Webpage’s Layout with CSS

.preview-block{position:relative;background:#f8f8f8;padding:20px;margin-bottom:20px;border:1px solid #dedede;text-align:center;transition:all .5s}

Before CSS was out, people used tables in order to layout their webpages. Now, the introduction of CSS changed all that. CSS provides us with a lot of flexibility to position the elements in a webpage. In […]

Read Article

Creating Simple and Interactive Pricing Tables in CSS

.preview-block{position:relative;background:#f8f8f8;padding:20px;margin-bottom:20px;border:1px solid #dedede;text-align:center;transition:all .5s}@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);@import url(http://fonts.googleapis.com/cssfamily=Source+Sans+Pro:300,400,600);body{background:#ededeb}.title{width:600px;margin:0 auto;text-align:center}.title h1{margin:0;font-family:’font-family: ‘Montserrat’, sans-serif;’,sans-serif;font-weight:400;color:#3d3d3d}.title h2{margin:8px 0 0;font-size:26px;color:#8b8b8b;font-weight:200;font-family:’font-family: ‘Montserrat’, sans-serif;’,sans-serif}.title h3{margin:0;font-size:12px;color:#bababa;font-weight:200;font-family:’font-family: ‘Source Sans Pro’, sans-serif;’,sans-serif}.ui{width:300px;margin:20px auto 0;font-family:Montserrat,sans-serif;color:#fff;box-shadow:none}.ui .drop{z-index:3;opacity:0;width: 100%;background:#107FC9;position:absolute;color:#fff;bottom:100px;padding:15px 30px 0;transition-property:bottom,opacity;transition-duration:.8s}.ui .drop p{color:#f8fbfa}.ui_box{width:300px;float:left;margin:0 auto;margin-bottom:20px;position:relative;background:#dedede;cursor:pointer;transform:scale(1);transition-property:all;transition-duration:.1s;border-bottom:5px solid #107FC9;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.25);box-shadow:0 1px 1px 0 rgba(0,0,0,.25)}body .ui_box_top{background:#3b3b3b;padding:15px; […]

Read Article

Creating Custom Flat and Flipping Style CSS Checkboxes

.preview-block{position:relative;background:#f8f8f8;padding:20px;margin-bottom:20px;border:1px solid #dedede;text-align:center}.block-switch{position:relative;text-align:center;display:inline-block;margin:8px 20px 0 0;width:100px}.block-switch h4{margin:0;font-size:15px}input.toggle{position:absolute;visibility:hidden}input.toggle+label{display:block;position:relative;cursor:pointer;outline:0;user-select:none}input.toggle-flat+label{width:100px;height:20px;background-color:#BF2A23;-webkit-transition:background .5s;-moz-transition:background .5s;-o-transition:background .5s;transition:background .5s}input.toggle-flat+label:after,input.toggle-flat+label:before{display:block;position:absolute;content:””}input.toggle-flat+label:before{top:2px;left:2px;bottom:2px;right:2px;-webkit-transition:background .5s;-moz-transition:background .5s;-o-transition:background .5s;transition:background .5s}input.toggle-flat+label:after{top:4px;left:4px;bottom:4px;width:45px;background-color:#fff;-webkit-transition:margin .5s,background .5s;-moz-transition:margin .5s,background .5s;-o-transition:margin .5s,background .5s;transition:margin .5s,background .5s}input.toggle-flat:checked+label{background-color:#00C176}input.toggle-flat:checked+label:after{margin-left:47px;background-color:#fff}input.toggle-flip+label{height:20px}input.toggle-flip+label:after,input.toggle-flip+label:before{position:absolute;left:0;bottom:0;right:0;width:100px;height:20px;color:#fff;text-align:center;line-height:20px}input.toggle-flip+label:before{background-color:#BF2A23;content:attr(data-off);-webkit-transition:-webkit-transform .5s;-moz-transition:-moz-transform .5s;-o-transition:-o-transform .5s;transition:transform .5s;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}input.toggle-flip+label:after{background-color:#00C176;color:#fff;content:attr(data-on);-webkit-transition:-webkit-transform .4s;-moz-transition:-moz-transform .4s;-o-transition:-o-transform .4s;transition:transform .4s;-webkit-transform:rotateX(180deg);-moz-transform:rotateX(180deg);-ms-transform:rotateX(180deg);-o-transform:rotateX(180deg);transform:rotateX(180deg);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}input.toggle-flip:checked+label:before{-webkit-transform:rotateX(180deg);-moz-transform:rotateX(180deg);-ms-transform:rotateX(180deg);-o-transform:rotateX(180deg);transform:rotateX(180deg)}input.toggle-flip:checked+label:after{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}

In this tutorial, we will create some flat style toggle […]

Read Article

10 Latest CSS3 Development Tools

Be it a housewife, a college pass out a kid or a senior citizen, nowadays everyone want to start their own sweet small business to earn some money. These businesses may be small, part-time or a large scale factory set-up. […]

Read Article

13 Latest CSS3 Tutorials for Beginners

The website design is increasing day by day and thus its technology changing daily. HTMLs code is developing, people need more pics and images with videos on site but still not make them heavier. Mobile users have increased, thus adaptive […]

Read Article

10 Best Free CSS3 Frameworks of Year 2015

Now that the internet can be accessed on any mobile device, whether a laptop, desktop, tablets, smartphone, websites are designed in responsive web version. It is the ability to change the page and font size according to the screen size […]

Read Article