Subtle Buttons

Developer
Size
4,010 Kb
Views
38,456

How do I make an subtle buttons?

Mission: create the most subtle buttons possible.. What is a subtle buttons? How do you make a subtle buttons? This script and codes were developed by Yogev Ahuvia on 11 September 2022, Sunday.

Subtle Buttons Previews

Subtle Buttons - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Subtle Buttons</title> <link href="//netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ button { display: inline-block; width: 250px; cursor: pointer; outline: none; border: 0; border-radius: 100%; padding: 5px 20px; line-height: 1.8; color: #efefef; text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3), 0px -1px 1px #fff; box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.7), 0px 1px 2px rgba(0, 0, 0, 0.1); background-color: #eeeeee; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFEEEEEE', endColorstr='#FFEEEEEE'); background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjEuMCIgeDI9IjEuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(linear, 0% 100%, 100% 0%, color-stop(0%, #eeeeee), color-stop(100%, #eeeeee)); background-image: -moz-linear-gradient(left bottom, #eeeeee 0%, #eeeeee 100%); background-image: -webkit-linear-gradient(left bottom, #eeeeee 0%, #eeeeee 100%); background-image: linear-gradient(to right top, #eeeeee 0%, #eeeeee 100%);
}
button:not(:last-child) { margin-right: 10px;
}
button:hover { -moz-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; -o-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; -webkit-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; color: #ddd;
}
button:active { -moz-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; -o-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; -webkit-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; box-shadow: none !important;
}
body { background: #efefef; font-size: 120px; text-align: center;
}
.wrapper { width: 960px; margin: 50px auto;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class="wrapper"> <button><i class="icon-facebook icon-large"></i></button> <button><i class="icon-twitter icon-large"></i></button> <button><i class="icon-linkedin icon-large"></i></button>
</div>
</body>
</html>

Subtle Buttons - Script Codes CSS Codes

button { display: inline-block; width: 250px; cursor: pointer; outline: none; border: 0; border-radius: 100%; padding: 5px 20px; line-height: 1.8; color: #efefef; text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3), 0px -1px 1px #fff; box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.7), 0px 1px 2px rgba(0, 0, 0, 0.1); background-color: #eeeeee; *zoom: 1; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFEEEEEE', endColorstr='#FFEEEEEE'); background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjEuMCIgeDI9IjEuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(linear, 0% 100%, 100% 0%, color-stop(0%, #eeeeee), color-stop(100%, #eeeeee)); background-image: -moz-linear-gradient(left bottom, #eeeeee 0%, #eeeeee 100%); background-image: -webkit-linear-gradient(left bottom, #eeeeee 0%, #eeeeee 100%); background-image: linear-gradient(to right top, #eeeeee 0%, #eeeeee 100%);
}
button:not(:last-child) { margin-right: 10px;
}
button:hover { -moz-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; -o-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; -webkit-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; color: #ddd;
}
button:active { -moz-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; -o-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; -webkit-transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; transition: color 0.5s, box-shadow 0.5s, text-shadow 0.5s; box-shadow: none !important;
}
body { background: #efefef; font-size: 120px; text-align: center;
}
.wrapper { width: 960px; margin: 50px auto;
}
Subtle Buttons - Script Codes
Subtle Buttons - Script Codes
Home Page Home
Developer Yogev Ahuvia
Username kindofone
Uploaded September 11, 2022
Rating 3
Size 4,010 Kb
Views 38,456
Do you need developer help for Subtle 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!

Yogev Ahuvia (kindofone) Script Codes
Create amazing love letters 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!