CSS for Beginners #1 : Fancy Buttons using CSS

By Raj Rajhans -
July 10th, 2018
7 minute read

CSS for Beginners Series #1

Hello there! This is the first post in the “CSS for Beginners” series. Today, we will create various kinds of buttons – facebook-styled, 3D buttons, gradient buttons, animated buttons, toggle buttons, and what not. And, this would be done completely using CSS. So, let’s start!

Facebook – styled buttons


See the Pen Facebook Styled Button by Raj (@rajrajhans) on CodePen.

The first -moz-box-shadow is for mozilla based browsers. Second -webkit-box-shadow is for webkit based browsers, and the last one, box-shadow is just a fallback for old browsers. The “inset” makes the box shadow on the inside of the block level element. So the box shadow is going to be inside the element, rather than the outside. The firt number is the horizontal offset, second one is vertical offset. The third number is the blur radius. 0 would be a sharp line. The next is the spread radius. Then the last one is the color of the shadow. Then, we set the background of the button to #4267b2, which is the facebook blue color.

Next, we set the hover effects for the button. We add a background color attribute inside it so that the button will change the background color on hover and active states. Next, we set similar effects for the facebook style light class, The background is set to #f6f7f9, border to a solid 1 px #ced0d4. And, we change the background on hover to #d8dade, which is more of a gray-ish color.

3D Buttons


See the Pen 3D Buttons by Raj (@rajrajhans) on CodePen.

To get that 3D effect , we set the box shadow to be -6px and 6px top-bottom and right-left, and adjust the hue, saturation accordingly. We set the font size to 1.4 rem. “em” is the unit relative to font size of parent. “rem” is the unit relative to the group, which is a little bit more consistent. Now, for hover, we’ll change the background to be a little more dark, and for active state, we’ll change the background and the box shadow.

We need to fill the void that is on the top left and bottom right corners. For that, we make use of the pseudo elements before and after and create a triangular portion using css.

3D button 2 Circle

For getting the circle shape, we keep the border radius 100%. Here, we set the text-shadow to 0, -1px, 0 #c3af07. What the -1px does is that it makes the shadow above the text. It’s the vertical offset. The 0 is the horizontal offset. The zero after that (the third value) is the blur. We don’t want any blur so we have kept it to zero.

By adding multiple box shadows, we can achieve the 3d effect. For the hover effect, we decrease the transparency and make it more dark. For active state, we make it even darker.

We also need to create the clicky effect that we achieved in the first 3d button. We want to move the button down, and keep the box shadow as is. This can be achieved by changing the box shadow in the active state, and just remove the two pixels that we are bumping down. This will achieve the click effect.

Animated Buttons


See the Pen Animated Buttons by Raj (@rajrajhans) on CodePen.

Animated Button 1

For the first animated button, we set the position to be relative, display the button as inline block and add some padding. Font size would still be 1.4 re.

Transition is set to all ease and 0.3 second. Let us create an animation using @keyframes. But first, we will call the animation in the hover selector of the button.

To create the animation, we use keyframes. In the from area, we set the background position to 0,0, and in the to area, we set the background position to 40px and 0. This will crreate a linear animating effect.

Animated Button 2

For the second animated button, we will set the basic styles same as the first one, except without the pattern. To create that chevron that pops up on hover, we use the after pseudo element.

For the after pseudo elemnt, we set the top property to 50%, i.e. in the middle. After that, we set the transition to all ease 0.3s. And,we also set the opacity to zero, as we dont want it to appear at first. Now, on hover, we want to shift the text to the left. We can achieve that by removing some left padding, adding some right padding, so it looks that the width of the button stays the same while the text shifts over. And because we have the transition it will glide over, rather than jump over. Normally, we have kept the padding to be 20px 40px 20px 40px. On hover, we’ll set it to be 20px 60px 20px 20px. So as we have transition, it is actually animating the padding change.

Gradient Buttons


See the Pen Gradient Buttons by Raj (@rajrajhans) on CodePen.

Gradient button 1

We use the border image property to set the gradient to the border, and then use the border image slice property to set the gradient on all four sides. Now, as a hover effect, we change the text color and the background fill color. As we keep the transition time 0.3 seconds, it gives a nice feel on hover.

Gradient button 2

For the second button, we keep everything pretty much the same but change the gradiend from yellow to transparent as it would give the fade away effect.

Toggle Switch Buttons


See the Pen Toggle Switch Buttons by Raj (@rajrajhans) on CodePen.

Toggle Button 1

The toggle buttons are not really buttons. In the HTML, they are actually checkbox input. We are going to use CSS3 to manipulate the view of checkbox into an actual switch. i.e. the toggle button. Using the CSS properties, we are changing the look of the checkbox; Using the pseudo before, we create a switch-like that displays content “off” in uppercase. We add a transition property so as to animate it.

Now as we can see, the checkboc is wrapped in the label using for attribute “toggle1”. Now the checkbox has the id “toggle1”. It is hidden, but it exists. So, when you click on the label, it’s going to toggle that input, because of the for attribute connecting it to the id. That means when you click the label, it is still toggling from on to off. CSS can access to find out whether the checkbox is on or off. Then, we can use that data to style it accordingly.

If you look at the toggle css code, the selector is something like this : “.toggle-1input:checked + .toggle-1button” What this does is looks for the input that is checked, but selects it’s direct sibling, which is toggle-1__button. So, the sibling get’s selected, but only if the input is checked. Then, we change the background after selecting that.

Just as we created a pseudo element for “off” we will create a ‘before’ pseudo element for the “on” state.

Toggle Button 2

For this, we first set the basic properties to display a button, we set the margin, padding, vertical alignment, etc. Then, we put in a display:none; after selecting the input of the toggle-2 class as we do not want the actual checkbox to be visible. We also want a black circle before the text “Click me to activate”. Thatcan be done by taking a pseudo element “before”. We set the border radius of the pseudo element to 100% so that it will be seen perfect circle. We also put transition all 0.3 seconds to animate the changes.

After that, we use the adjacent sibling selector to style the pseudo element once the input is in the checked state. So, we change the background color and the button is ready!

I hope you guys liked this post. This was more of a technical post. We’ll go through many such beginner-friendly CSS codes in the next few posts. Stay tuned!

raj-rajhans

Raj Rajhans

Product Engineer @ invideo