Topic: CSS3
Difficulty: Beginner
Estimated completion time: 30 mins
In this tutorial we will be making some cool
CSS3 buttons and we will try to make a precise copy of them. Let’s get started…
Step 1 – HTML
The HTML is very simple, we’ll just create
3 anchor tags with the class of
‘button’ and since we will create three different colors styles we will give to each link a different color class
1 | < a href = "#" class = "button green" >button</ a > |
3 | < a href = "#" class = "button blue" >button</ a > |
5 | < a href = "#" class = "button gray" >button</ a > |
Step 1 Preview
Step 2 – Basic CSS Styling
Now we will start to give the
basic shape and styles for the buttons. We’ll use the
‘display: inline-block’ property to be able to use it as a block element and to tolerate others HTML elements next to it. The others properties are basic CSS2 styles, you should not have difficulty to understand them.
8 | font : bold 12px / 25px Arial , sans-serif ; |
Before getting in the CSS3 part let’s just add some
basic background and text colors for each color style.
Step 2 Preview
Step 3 – CSS3 Styling
Let’s start the fun part! Now we’ll add the
rounded corners, shadows, and basic animations. You will notice that we will use various prefixes for each browser. This is required because this properties are in tests in some browsers and we need to add prefixes to target them
8 | font : bold 12px / 25px Arial , sans-serif ; |
10 | text-shadow : 1px 1px 1px rgba( 255 , 255 , 255 , . 22 ); |
12 | -webkit-border-radius: 30px ; |
13 | -moz-border-radius: 30px ; |
16 | -webkit-box-shadow: 1px 1px 1px rgba( 0 , 0 , 0 , . 29 ), inset 1px 1px 1px rgba( 255 , 255 , 255 , . 44 ); |
17 | -moz-box-shadow: 1px 1px 1px rgba( 0 , 0 , 0 , . 29 ), inset 1px 1px 1px rgba( 255 , 255 , 255 , . 44 ); |
18 | box-shadow: 1px 1px 1px rgba( 0 , 0 , 0 , . 29 ), inset 1px 1px 1px rgba( 255 , 255 , 255 , . 44 ); |
20 | -webkit-transition: all 0.15 s ease; |
21 | -moz-transition: all 0.15 s ease; |
22 | -o-transition: all 0.15 s ease; |
23 | -ms-transition: all 0.15 s ease; |
24 | transition: all 0.15 s ease; |
Step 3 Preview
Step 4 – CSS3 Background Colors
In this part we’ll add
CSS3 background gradients for each color style. If you want to create more background gradients just change the colors
7 | background : -moz-linear-gradient( top , #a5cd4e 0% , #6b8f1a 100% ); |
8 | background : -webkit-gradient(linear, left top , left bottom , color-stop( 0% , #a5cd4e ), color-stop( 100% , #6b8f1a )); |
9 | background : -webkit-linear-gradient( top , #a5cd4e 0% , #6b8f1a 100% ); |
10 | background : -o-linear-gradient( top , #a5cd4e 0% , #6b8f1a 100% ); |
11 | background : -ms-linear-gradient( top , #a5cd4e 0% , #6b8f1a 100% ); |
12 | background : linear-gradient( top , #a5cd4e 0% , #6b8f1a 100% ); |
21 | background : -moz-linear-gradient( top , #70c9e3 0% , #39a0be 100% ); |
22 | background : -webkit-gradient(linear, left top , left bottom , color-stop( 0% , #70c9e3 ), color-stop( 100% , #39a0be )); |
23 | background : -webkit-linear-gradient( top , #70c9e3 0% , #39a0be 100% ); |
24 | background : -o-linear-gradient( top , #70c9e3 0% , #39a0be 100% ); |
25 | background : -ms-linear-gradient( top , #70c9e3 0% , #39a0be 100% ); |
26 | background : linear-gradient( top , #70c9e3 0% , #39a0be 100% ); |
35 | background : -moz-linear-gradient( top , #d3d3d3 0% , #8a8a8a 100% ); |
36 | background : -webkit-gradient(linear, left top , left bottom , color-stop( 0% , #d3d3d3 ), color-stop( 100% , #8a8a8a )); |
37 | background : -webkit-linear-gradient( top , #d3d3d3 0% , #8a8a8a 100% ); |
38 | background : -o-linear-gradient( top , #d3d3d3 0% , #8a8a8a 100% ); |
39 | background : -ms-linear-gradient( top , #d3d3d3 0% , #8a8a8a 100% ); |
40 | background : linear-gradient( top , #d3d3d3 0% , #8a8a8a 100% ); |
Step 4 Preview
Step 5 – Create Big Buttons
To create the
big buttons style we’ll add a
‘big’ class and a span tag with some text.
HTML
1 | < a href = "#" class = "button big green" >sign in < span >One minute</ span ></ a > |
3 | < a href = "#" class = "button big blue" >sign in < span >One minute</ span ></ a > |
5 | < a href = "#" class = "button big gray" >sign in < span >One minute</ span ></ a > |
CSS
7 | text-transform : uppercase ; |
8 | font : bold 20px / 22px Arial , sans-serif ; |
14 | font : italic normal 12px / 18px Georgia, sans-serif ; |
15 | text-shadow : 1px 1px 1px rgba( 255 , 255 , 255 , . 12 ); |
Step 5 Preview
Step 6 – Hover and Active State
For the
hover and active sate we’ll just edit the box-shadows.
Hover
2 | -webkit-box-shadow: 1px 1px 1px rgba( 0 , 0 , 0 ,. 29 ), inset 0px 0px 2px rgba( 0 , 0 , 0 , . 5 ); |
3 | -moz-box-shadow: 1px 1px 1px rgba( 0 , 0 , 0 ,. 29 ), inset 0px 0px 2px rgba( 0 , 0 , 0 , . 5 ); |
4 | box-shadow: 1px 1px 1px rgba( 0 , 0 , 0 ,. 29 ), inset 0px 0px 2px rgba( 0 , 0 , 0 , . 5 ); |
Hover State Preview
Active
2 | -webkit-box-shadow: inset 0px 0px 3px rgba( 0 , 0 , 0 , . 8 ); |
3 | -moz-box-shadow: inset 0px 0px 3px rgba( 0 , 0 , 0 , . 8 ); |
4 | box-shadow: inset 0px 0px 3px rgba( 0 , 0 , 0 , . 8 ); |
Active State Preview
Conclusion
That’s it! We’ve finished our
CSS3 buttons. Hope you like it and don’t forget to live some feedback in the comments.
0 comments:
Post a Comment