Answers for "css button"

CSS
1

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>
Posted by: Guest on October-19-2021
0

css button

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
Posted by: Guest on July-14-2021
2

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>
Posted by: Guest on October-18-2021
4

html css good button

<button style="background-color: turquoise; border: none; border-radius: 5px; color: #333; /* Dark grey */ padding: 15px 32px">Example button</button>
Posted by: Guest on September-29-2020
0

css button

/*css button  2 buttonSLIDE FROM BOTTOM or SLIDE FROM TOP by Qamber Abbas*/


<style>
:root {
  --primary-bg: #3498db;
  --fontcolor:#fff;
	
  
  --fonthovercolor:#ecf0f1;
  --hovercolorbg:#3498db;}
  .wrapper {
  max-width: 65rem;
  width: 100%;
  margin: 2rem auto;
  padding: 5rem;
  text-align: center;
}

.button {
  font-size: 2em;
  background: var(--primary-bg);
  color: var(--fontcolor);
  border: 0.25rem solid #3498db;
  padding: 0.85em 0.75em;
  margin: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.button:hover {
  color: var(--hovercolorbg);
}
.button::after {
  content: "";
  background: var(--fonthovercolor);
  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_top::after {
  left: 0;
  right: 0;
  top: -100%;
  bottom: 100%;
}
.button.slide_from_bottom::after {
  left: 0;
  right: 0;
  top: 100%;
  bottom: -100%;
}

</style>

<div class="wrapper">
  <button class="slide_from_top button">SLIDE FROM TOP</button>
  <button class="slide_from_bottom button">SLIDE FROM BOTTOM</button>
  </div>
Posted by: Guest on October-19-2021
0

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>
Posted by: Guest on October-19-2021

Browse Popular Code Answers by Language