Advertisement
epsilon413

Untitled

Apr 3rd, 2024
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.59 KB | Source Code | 0 0
  1. * {
  2.   box-sizing: border-box;
  3.   margin: 0px;
  4.   padding: 0px;
  5.   font-family: Arial, Helvetica, sans-serif;
  6.   color: #fff;
  7. }
  8.  
  9. body {
  10.   background-color: rgb(16, 2, 30);
  11.   min-height: 100vh;
  12.   width: 100%;
  13.   display: flex;
  14.   justify-content: center;
  15.   align-items: center;
  16. }
  17.  
  18. button {
  19.   padding: 12px 16px;
  20.   color: #fff;
  21.   background-color: rebeccapurple;
  22.   border: 2px solid #fff;
  23.   border-radius: 12px;
  24. }
  25.  
  26. main {
  27.   width: 480px;
  28.   height: 480px;
  29.   padding: 24px;
  30.  
  31.   display: flex;
  32.   flex-direction: column;
  33.   justify-content: space-around;
  34.   align-items: center;
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement