Collection CSS3 buttons

Developer
Size
3,132 Kb
Views
40,480

How do I make an collection css3 buttons?

A collection of fancy, simple and clean buttons with CSS3 hover effects. Only works with modern browsers.. What is a collection css3 buttons? How do you make a collection css3 buttons? This script and codes were developed by Andres on 26 August 2022, Friday.

Collection CSS3 buttons Previews

Collection CSS3 buttons - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Collection CSS3 buttons</title> <script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="wrapper"> <h1 class="pageTitle">Collection CSS3 buttons</h1> <h2 class="pageSubTitle">With fancy CSS3 transition hover effects</h2> <p>A collection of fancy, simple and clean buttons with CSS3 hover effects. Only works with modern browsers.</p> <div class="container"> <h3 class="articleTitle">Fade</h3> <a href="" title="Button fade blue/green" class="button btnFade btnBlueGreen">Fade</a> <a href="" title="Button fade lightblue" class="button btnFade btnLightBlue">Fade</a> <a href="" title="Button fade orange" class="button btnFade btnOrange">Fade</a> <a href="" title="Button fade purple" class="button btnFade btnPurple">Fade</a> <div class="clear"></div> </div> <div class="container"> <h3 class="articleTitle">3D</h3> <a href="" title="Button push blue/green" class="button btnPush btnBlueGreen">Push</a> <a href="" title="Button push lightblue" class="button btnPush btnLightBlue">Push</a> <a href="" title="Button push orange" class="button btnPush btnOrange">Push</a> <a href="" title="Button push purple" class="button btnPush btnPurple">Push</a> <div class="clear"></div> </div> <div class="container"> <h3 class="articleTitle">Border</h3> <a href="" title="Button border blue/green" class="button btnBorder btnBlueGreen">Border</a> <a href="" title="Button border lightblue" class="button btnBorder btnLightBlue">Border</a> <a href="" title="Button border orange" class="button btnBorder btnOrange">Border</a> <a href="" title="Button border purple" class="button btnBorder btnPurple">Border</a> <div class="clear"></div> </div> <div class="container"> <h3 class="articleTitle">Float</h3> <a href="" title="Button border blue/green" class="button btnFloat btnBlueGreen">Float</a> <a href="" title="Button border lightblue" class="button btnFloat btnLightBlue">Float</a> <a href="" title="Button border orange" class="button btnFloat btnOrange">Float</a> <a href="" title="Button border purple" class="button btnFloat btnPurple">Float</a> <div class="clear"></div> </div> <div class="container"> <h3 class="articleTitle">Slide</h3> <a href="" title="Button slide blue/green" class="button btnSlide btnBlueGreen"> <span class="top" data-content="Slide">Slide</span> <span class="bottom" data-content="Slide">Me</span> </a> <a href="" title="Button slide lightblue" class="button btnSlide btnLightBlue"> <span class="top" data-content="Slide">Slide</span> <span class="bottom" data-content="Slide">Me</span> </a> <a href="" title="Button slide orange" class="button btnSlide btnOrange"> <span class="top" data-content="Slide">Slide</span> <span class="bottom" data-content="Slide">Me</span> </a> <a href="" title="Button slide purple" class="button btnSlide btnPurple"> <span class="top" data-content="Slide">Slide</span> <span class="bottom" data-content="Slide">Me</span> </a> <div class="clear"></div> </div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>

Collection CSS3 buttons - Script Codes CSS Codes

@import url(http://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700);
/*
.fonts { font-family: 'Josefin Slab', serif;
}
*/
body { font-family: 'Josefin Slab', serif; font-size: 20px; line-height: 24px; color: #333; background: #ececec; overflow-y: scroll;
}
p { margin-bottom: 0.5em;
}
a,
a:visited { text-decoration: none; color: #00AE68;
}
.clear { clear: both;
}
.pageTitle { font-size: 2em; font-weight: 700; text-transform: uppercase; line-height: 1em; color: #00AE68;
}
.pageSubTitle { margin-bottom: 0.5em; font-size: 1.3em; font-weight: 700; line-height: 1em; color: #222;
}
.articleTitle { font-size: 1.15em; font-weight: 700; line-height: 1em; color: #222;
}
.wrapper { width: 600px; margin: 20px auto;
}
.container { padding-top: 1em; margin-top: 1em; border-top: solid 1px #CCC;
}
a.button { display: block; position: relative; float: left; width: 120px; padding: 0; margin: 10px 20px 10px 0; font-weight: 600; text-align: center; line-height: 50px; color: #FFF; border-radius: 5px; transition: all 0.2s ;
}
.btnBlueGreen { background: #00AE68;
}
.btnLightBlue { background: #5DC8CD;
}
.btnOrange { background: #FFAA40;
}
.btnPurple { background: #A74982;
}
/* FADE */
.btnFade.btnBlueGreen:hover { background: #21825B;
}
.btnFade.btnLightBlue:hover { background: #01939A;
}
.btnFade.btnOrange:hover { background: #FF8E00;
}
.btnFade.btnPurple:hover { background: #6D184B;
}
/* 3D */
.btnBlueGreen.btnPush { box-shadow: 0px 5px 0px 0px #007144;
}
.btnLightBlue.btnPush { box-shadow: 0px 5px 0px 0px #1E8185;
}
.btnOrange.btnPush { box-shadow: 0px 5px 0px 0px #A66615;
}
.btnPurple.btnPush { box-shadow: 0px 5px 0px 0px #6D184B;
}
.btnPush:hover { margin-top: 15px; margin-bottom: 5px;
}
.btnBlueGreen.btnPush:hover { box-shadow: 0px 0px 0px 0px #007144;
}
.btnLightBlue.btnPush:hover { box-shadow: 0px 0px 0px 0px #1E8185;
}
.btnOrange.btnPush:hover { box-shadow: 0px 0px 0px 0px #A66615;
}
.btnPurple.btnPush:hover { box-shadow: 0px 0px 0px 0px #6D184B;
}
/* BORDER */
.btnBlueGreen.btnBorder { box-shadow: 0px 0px 0px 0px #21825B;
}
.btnBlueGreen.btnBorder:hover { box-shadow: 0px 0px 0px 5px #21825B;
}
.btnLightBlue.btnBorder { box-shadow: 0px 0px 0px 0px #01939A;
}
.btnLightBlue.btnBorder:hover { box-shadow: 0px 0px 0px 5px #01939A;
}
.btnOrange.btnBorder { box-shadow: 0px 0px 0px 0px #A66615;
}
.btnOrange.btnBorder:hover { box-shadow: 0px 0px 0px 5px #A66615;
}
.btnPurple.btnBorder { box-shadow: 0px 0px 0px 0px #6D184B;
}
.btnPurple.btnBorder:hover { box-shadow: 0px 0px 0px 5px #6D184B;
}
/* FLOAT */
.btnFloat { background: none; box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
.btnFloat:before { content: 'Float'; display: block; position: absolute; top: 0; left: 0; width: 120px; height: 50px; border-radius: 5px; transition: all 0.2s ;
}
.btnBlueGreen.btnFloat:before { background: #00AE68;
}
.btnLightBlue.btnFloat:before { background: #5DC8CD;
}
.btnOrange.btnFloat:before { background: #FFAA40;
}
.btnPurple.btnFloat:before { background: #8D336A;
}
.btnFloat:before { box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4);
}
.btnFloat:hover:before {
}
.btnFloat:hover:before { margin-top: -2px; margin-left: 0px; transform: scale(1.1,1.1); -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1); box-shadow: 0px 5px 5px -2px rgba(0, 0, 0, 0.25);
}
/* SLIDE */
.btnSlide.btnBlueGreen { background: 0;
}
.btnSlide .top { position: absolute; top: 0px; left: 0; width: 120px; height: 50px; background: #00AE68; z-index: 10; transition: all 0.2s ; border-radius: 5px;
}
.btnSlide.btnBlueGreen .top { background: #00AE68;
}
.btnSlide.btnLightBlue .top { background: #5DC8CD;
}
.btnSlide.btnOrange .top { background: #FFAA40;
}
.btnSlide.btnPurple .top { background: #A74982;
}
.btnSlide .bottom { position: absolute; top: 0; left: 0; width: 120px; height: 50px; color: #000; z-index: 5; border-radius: 5px;
}
.btnSlide:hover .top { top: 40px;
}
Collection CSS3 buttons - Script Codes
Collection CSS3 buttons - Script Codes
Home Page Home
Developer Andres
Username Angelfire
Uploaded August 26, 2022
Rating 3
Size 3,132 Kb
Views 40,480
Do you need developer help for Collection CSS3 buttons?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Andres (Angelfire) Script Codes
Create amazing video scripts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!