Advertisement
ADL_Rodrigo_Silva

Untitled

May 27th, 2022
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. html {
  2.     font-family: sans-serif;
  3.   }
  4.  
  5.   body {
  6.     margin: 0;
  7.   }
  8.  
  9.   button {
  10.     font: inherit;
  11.     background: #5102ac;
  12.     border: 1px solid #5102ac;
  13.     color: white;
  14.     cursor: pointer;
  15.     padding: 1.25rem 2.5rem;
  16.     font-size: 1.5rem;
  17.   }
  18.  
  19.   button:focus {
  20.     outline: none;
  21.   }
  22.  
  23.   button:hover,
  24.   button:active {
  25.     background: #832ee4;
  26.     border-color: #832ee4;
  27.   }
  28.  
  29.   #control-center {
  30.     border: 2px solid #ccc;
  31.     margin: 5rem;
  32.     padding: 2rem;
  33.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement