Search
 
SCRIPT & CODE EXAMPLE
 

CSS

button css

<a href="#" class="butt">Ceramics</a>

.butt {
	box-shadow:inset 0px 1px 0px 0px #fce2c1;
	background:linear-gradient(to bottom, #ffc477 5%, #fb9e25 100%);
	background-color:#ffc477;
	border-radius:11px;
	border:2px solid #eeb44f;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:16px;
	font-weight:bold;
	padding:8px 18px;
	text-decoration:none;
	text-shadow:0px 1px 0px #cc9f52;
}
.butt:hover {
	background:linear-gradient(to bottom, #fb9e25 5%, #ffc477 100%);
	background-color:#fb9e25;
}
.butt:active {
	position:relative;
	top:1px;
}
Comment

css buttons

<style>
  .btn {
  border: none;
  border-radius: 12px;
  width: 80px;
  height: 30px;
  border-color: #FFB45C;
  background: linear-gradient(146.11deg, #FFDFBA 20.43%, rgba(255, 255, 255, 0) 79.91%), linear-gradient(202.81deg, #FF6636 38.99%, rgba(255, 255, 255, 0) 85.2%), #FFB45C;
}

.btn:hover {
    background: linear-gradient(red, yellow);
}
</style>

<button class='btn'>clcik me</button>
Comment

css button

<!DOCTYPE html>
<html lang="en">
<head>
          <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>Perfect Button Tutorial BY Sampanna Bhattarai</title>
</head>
<body>
          <style>
                    *{
          margin: 0;
          padding: 0;
          font-family: sans-serif;

}

body{
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100vh;
          background: #000;
}
body button{
          background: linear-gradient(rgb(25, 255, 156),rgb(119, 157, 255),rgb(0, 195, 255));
          color: rgb(255, 255, 255);
          outline: none;
          border: none;
          font-size: 50px;
          width: 5em;
          border-radius: 12px;
          cursor: pointer;
          transition: all 0.9s ease-in-out;
}
body button:hover{
          border-radius: 19px;
          background-color: aqua;
          box-shadow: 0px 0px 09px 10px rgba(0, 0, 255, .2),
                                0px 0px 09px 10px rgba(255,255,255, .2)
          ;
}
          </style>
          <button>Click</button> 
<!-- I am Sampanna bhattarai -->
</body>
</html>
Comment

button in css

.bn14 {
  font-family: lato,sans-serif;
  font-weight: bold;
  font-size: 1em;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  padding: 10px 40px 10px 40px;
  position: relative;
  border: 3px solid #ffffff;
  border-radius: 25px;
}
Comment

PREVIOUS NEXT
Code Example
Css :: adding quotes css 
Css :: gradient css 
Css :: login page ui html css 
Css :: css not working 
Css :: scroll div when page scroll 
Css :: background color 
Css :: css make hover on parent child move 
Css :: style input number css 
Css :: How to make website responsive for safari 
Css :: media queries in scss 
Css :: phone css 
Css :: are the iphone dimensions widht then height 
Css :: css3 ripple loop 
Css :: foreign key vs indexes 
Css :: memebuat html dan css login instagram 
Css :: set custom cursor 
Css :: css apply style to direct children 
Css :: CSS The !important 
Css :: make element fill page 
Css :: jpa select date format 
Css :: bootstrap-navbar-containers 
Css :: svg tailwind 
Css :: applying multiple transform values to an object css 
Css :: product list fix height image css 
Css :: responsive css template 
Css :: CSS Border - Shorthand Property 
Css :: how to render css in flask 
Css :: flex property in css 
Css :: html display text in alternating coloured panels 
Css :: css add margin to a particular div in print screen 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =