Showing posts with label Buttons - Icon. Show all posts
Showing posts with label Buttons - Icon. Show all posts

Beautiful Pure CSS3 Buttons

we will be making some cool CSS3 buttons. They are based on the Futurico User Interface by Vladimir Kudinov 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
<a href="#" class="button green">button</a>

<a href="#" class="button blue">button</a>

<a href="#" class="button gray">button</a>

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.
.button {
 display: inline-block;
 position: relative;
 margin: 10px;
 padding: 0 20px;
 text-align: center;
 text-decoration: none;
 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.
.green {
 color: #3e5706;
 background: #a5cd4e;
}

/* Blue Color */

.blue {
 color: #19667d;
 background: #70c9e3;
}

/* Gray Color */

.gray {
 color: #515151;
 background: #d3d3d3;
}
Read more:http://designmodo.com/create-css3-buttons/


Pure CSS3 Google-styled buttons

Google rolled out a new design across many of their services as part of the Google+ launch. The new look presents a sleeker, simplified Google that puts the emphasis on your data and not on the interface. Part of the design's success are the new buttons. Great UIs tend to have simple, obvious buttons that are standard across the entire application. I have created Google-styled buttons that you can apply to your app's UI.

New Look

Google's new look features some pretty slick buttons, seen here in Gmail's new UI. You can apply this theme to Gmail by going to Mail Settings > Themes and selecting Preview or Preview Dense theme.


Pure CSS3 Customizable Pressure Buttons

Customizable Pressure Style CSS Buttons
You can use or edit these as much as you like without any credit. They’re compatible with the latest version of all the major browsers. Click on the demo button for a more comprehensive view, but there’s a quick look at them below.

How Does it Work

So the buttons come in about 7 colors (by which I mean exactly 7 colors). The default color is gray. So if you do this:
<a href="" class="button">A button</a>
 If you want it to be any of the other colors (which are red, orange, blue, green, purple and pink) just add that word to the class property:
<a href="" class="red button">Another button!</a>
You can then add a border property. By default its rounded to 10px. There are 4 corner modifiers (shield, criss-cross, one-corner, rectangular). Each modify the corners in their own ways. You can check out the demo page for all the border combinations. So you could do this:
<a href="" class="orange button criss-cross">My corners feel weird.</a>


Multiple Pure CSS3 Button Cross Browser


These buttons created entirely from CSS (no images used at all).
They have been tested using Safari 5Firefox 5Chrome 12 and Opera 11.5 on the Mac. Sorry if you're using any form of Internet Explorer, but as it doesn't have support for some of the CSS3 properties involved I haven't bothered even trying to see how they render.

Pure CSS3 animated buttons


We are starting a new column called CSS3 Tricks. We will try to show you some neat tricks that you can use when designing your next website. In our first post we will show you how to create some simple animated buttons with CSS3 only. We will add some Photoshop like effects (shadow, bevel and emboss) and then animate the buttons without any help of javascript. I recommend that you download the source files first and check the live demo.

Using jQuery and CSS to Create Buttons



A website that has an original look stands out from the rest. CSS buttons therefore are important. Perhaps they are even trivial to implement using basic CSS and jQuery events. However, creating any high-quality work requires a thorough examination of the ingredients.