html css good button
<button style="background-color: turquoise; border: none; border-radius: 5px; color: #333; /* Dark grey */ padding: 15px 32px">Example button</button>
html css good button
<button style="background-color: turquoise; border: none; border-radius: 5px; color: #333; /* Dark grey */ padding: 15px 32px">Example button</button>
css button
/*css button slide to L to R by QamberAbbas */
<style>
:root {
--primary-bg: white;
--fontcolor:black;
--fonthovercolor:white;
--hovercolorbg:black;
}
.button {
text-align: center;
font-size: 27px;
background: var(--primary-bg);
color: var(--fontcolor);
border: 1 solid black;
padding: 15px 20px 15px 20px;
margin: 20px;
position: relative;
z-index: 1;
overflow: hidden;
}
.button:hover {
color: var(--fonthovercolor);
}
.button::after {
content: "";
background: var(--hovercolorbg);
position: absolute;
z-index: -1;
padding: 0.85em 0.75em;
display: block;
}
.button[class^="slide"]::after {
transition: all 0.35s;
}
.button[class^="slide"]:hover::after {
left: 0;
right: 0;
top: 0;
bottom: 0;
transition: all 0.35s;
}
.button.slide_from_left::after {
top: 0;
bottom: 0;
left: -100%;
right: 100%;
}
.wrapper1{
text-align:center;
}
</style>
<div class="wrapper1">
<button class="slide_from_left button">EXPLORE SERVICE</button>
</div>
html button size
transform: scale(4); /* This will make the component 4 times bigger */
css button code
/*css social icons button by Qamber Abbas*/
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="./social-media-icons.css">
<style>
body{
background: #d8d8d8;
}
.social-menu ul{
position: absolute;
top: 50%;
left: 50%;
padding: 0;
margin: 0;
transform: translate(-50%, -50%);
display: flex;
}
.social-menu ul li{
list-style: none;
margin: 0 15px;
}
.social-menu ul li .fab{
font-size: 30px;
line-height: 60px;
transition: .3s;
color: #000;
}
.social-menu ul li .fab:hover{
color: #fff;
}
.social-menu ul li a{
position: relative;
display: block;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #fff;
text-align: center;
transition: .6s;
box-shadow: 0 5px 4px rgba(0,0,0,.5);
}
.social-menu ul li a:hover{
transform: translate(0, -10%);
}
.social-menu ul li:nth-child(1) a:hover{
background-color: rgba(0, 0, 0, 0.829);
}
.social-menu ul li:nth-child(2) a:hover{
background-color: #E4405F;
}
.social-menu ul li:nth-child(3) a:hover{
background-color: #0077b5;
}
.social-menu ul li:nth-child(4) a:hover{
background-color: #000;
}
</style>
<div class="social-menu">
<ul>
<li><a href="#" target="blank"><i class="fab fa-github"></i></a></li>
<li><a href="#" target="blank"><i class="fab fa-instagram"></i></a></li>
<li><a href="#" target="blank"><i class="fab fa-linkedin-in"></i></a></li>
<li><a href="#"><i class="fab fa-youtube" target="blank"></i></a></li>
</ul>
</div>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="./social-media-icons.css">
<style>
body{
background: #d8d8d8;
}
.social-menu ul{
position: absolute;
top: 50%;
left: 50%;
padding: 0;
margin: 0;
transform: translate(-50%, -50%);
display: flex;
}
.social-menu ul li{
list-style: none;
margin: 0 15px;
}
.social-menu ul li .fab{
font-size: 30px;
line-height: 60px;
transition: .3s;
color: #000;
}
.social-menu ul li .fab:hover{
color: #fff;
}
.social-menu ul li a{
position: relative;
display: block;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #fff;
text-align: center;
transition: .6s;
box-shadow: 0 5px 4px rgba(0,0,0,.5);
}
.social-menu ul li a:hover{
transform: translate(0, -10%);
}
.social-menu ul li:nth-child(1) a:hover{
background-color: rgba(0, 0, 0, 0.829);
}
.social-menu ul li:nth-child(2) a:hover{
background-color: #E4405F;
}
.social-menu ul li:nth-child(3) a:hover{
background-color: #0077b5;
}
.social-menu ul li:nth-child(4) a:hover{
background-color: #000;
}
</style>
<div class="social-menu">
<ul>
<li><a href="#" target="blank"><i class="fab fa-github"></i></a></li>
<li><a href="#" target="blank"><i class="fab fa-instagram"></i></a></li>
<li><a href="#" target="blank"><i class="fab fa-linkedin-in"></i></a></li>
<li><a href="#"><i class="fab fa-youtube" target="blank"></i></a></li>
</ul>
</div>
<script src="https://kit.fontawesome.com/66aa7c98b3.js" crossorigin="anonymous"></script><script src="https://kit.fontawesome.com/66aa7c98b3.js" crossorigin="anonymous"></script>
css button
/*css button center to left or right by Qamber Abbas*/
<style>
:root {
--primary-bg: green;
--fontcolor:blue;
--fonthovercolor:black;
--hovercolorbg:red;
}
.button {
font-size: 2em;
background: var(--primary-bg);
color: var(--fontcolor);
border: 0.25rem solid black;
padding: 0.85em 0.75em;
margin: 1rem;
position: relative;
z-index: 1;
overflow: hidden;
}
.button:hover {
color: var(--fonthovercolor);
}
.button::after {
content: "";
background: var(--hovercolorbg);
position: absolute;
z-index: -1;
padding: 0.85em 0.75em;
display: block;
}
.button[class^="slide"]::after {
transition: all 0.35s;
}
.button[class^="slide"]:hover::after {
left: 0;
right: 0;
top: -100;
bottom: 0;
transition: all 0.35s;
}
.button.slide_from_left::after {
top: 0;
bottom: 0;
left: 100%;
right: 100%;
}
.wrapper{
text-align:center;
}
</style>
<div class="wrapper">
<button class="slide_from_left button" >EXPLORE SERVICE</button>
</div>
css button style rectangle
<div class="placeholder-box">
<button type="button"> Button Text Here </button>
<p>Nunc condimentum mauris elit</p>
<ul>
<li>Duis quis eros felis</li>
<li>Nulla facilisi</li>
</ul>
</div>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us