Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css button pressed effect

<body>
  <div class="container">
    <button class="button">Click Here</button>
  </div>
</body>

:root {
  --primary: #25abd9;
  --primary-dark: #2090b7;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #dcf5ff;
  margin: 0;
  padding: 0;
}

.container {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
}

.button {
  background: var(--primary);
  border: 0;
  border-radius: 5px;
  box-shadow: 0 6px 0 var(--primary-dark), 0 5px 15px -4px #000;
  color: #fff;
  cursor: pointer;
  font-family: roboto;
  font-size: 20px;
  font-weight: 800;
  height: 50px;
  padding: 5px;
  text-transform: uppercase;
  transition: box-shadow 0.2s ease-in-out, margin-top 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  width: 150px;
}

.button:hover,
.button:focus {
  opacity: 0.9;
  outline: 0;
}

.button:active {
  box-shadow: none;
  margin-top: 6px;
}
Comment

PREVIOUS NEXT
Code Example
Css :: how many px is iphone 12 pro max css 
Css :: what does align items center do 
Css :: sticky footer not working bootstrap 
Css :: grid css 
Css :: css filter img color etc 
Css :: put a border only on bottom 
Css :: different measurements in css 
Css :: scss responsive container 
Css :: horizontal scroll css images 
Css :: linear gradient not covering entire page 
Css :: css font family 
Css :: $scope.$apply 
Css :: css circle shadow 
Css :: red asterix css 
Css :: change font size in textarea html 
Css :: what does em stand for in css 
Css :: make previous commit master 
Css :: change background color on hover 
Css :: border shorthand css 
Css :: css hide scrollbar but scrollable 
Css :: css background text clip 
Css :: block elements css 
Css :: image orientation css 
Css :: font stack css 
Css :: round image css 
Css :: add color on image using css 
Css :: jquery css unset(remove) certain style 
Css :: ellipsis 
Css :: css padding attribute order 
Css :: Css gradient animations 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =