Advertisement
Guest User

Untitled

a guest
Sep 29th, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.51 KB | None | 0 0
  1. body {
  2.     background-color: #ffffff;
  3. }
  4.  
  5. p {
  6.   font-size: 20px;
  7. }
  8.  
  9. .description {
  10.   text-align: center;
  11. }
  12.  
  13. img {
  14.   border-radius: 50%;
  15. }
  16.  
  17. .buttons {
  18.   width: 258px;
  19.   height: 60px;
  20.   background-color: #ffd43b;
  21.   border-top-color: #183153;
  22.   border-top-width: 2.5px;
  23.   border-radius: 10px;
  24.   box-shadow: #183153 0px 7.5px 0px 0px;
  25.   font-size: 18px;
  26. }
  27.  
  28. .buttons:active {
  29.   background-color: #fab005;
  30.   box-shadow: none;
  31.   transform: translateY(4px);
  32. }
  33.  
  34. button:focus {
  35.   outline: none;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement