Guest User

Untitled

a guest
Aug 21st, 2022
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.49 KB | None | 0 0
  1. * {
  2.   margin: 0px;
  3.   padding: 0px;
  4.   font-family: "Arial";
  5.   font-size: 17px;
  6.   font-weight: 600px;
  7. }
  8.  
  9. body {
  10.   background: #171616;
  11.   color: #d4d0cf;
  12.   -webkit-user-select: none;
  13.   -moz-user-select: -moz-none;
  14.   -ms-user-select: none;
  15.   user-select: none;
  16. }
  17.  
  18. #container {
  19.   display: flex;
  20.   justify-content: center;
  21.   margin: 30px 0px 0px 0px;
  22.   color: #171616;
  23. }
  24.  
  25. #frame {
  26.   width: 350px;
  27.   height: 700px;
  28.   background: #e0d8d7;
  29.   border-radius: 10px;
  30.   box-shadow: 10px 10px 20px black;
  31. }
  32.  
  33. #screen {
  34.   width: 350px;
  35.   height: 180px;
  36.   background: #ccc3c2;
  37.   display: flex;
  38.   justify-content: center;
  39.   border-top-right-radius: 10px;
  40.   border-top-left-radius: 10px;
  41.   line-height: 180px;
  42.   font-size: 250%;
  43.   color: #d4d0cf;
  44. }
  45.  
  46. img {
  47.   width: 335px;
  48.   height: 160px;
  49.   display: flex;
  50.   justify-content: center;
  51.   align-items: center;
  52.   position: relative;
  53.   top: 10px;
  54.   border-radius: 7px;
  55. }
  56.  
  57. #button-container {
  58.   display: grid;
  59.   grid-template-columns: 114px 114px 114px;
  60.   text-align: center;
  61.   line-height: 120px;
  62.   margin: 0px auto 0px auto;
  63. }
  64.  
  65. .button {
  66.   font-size: 200%;
  67.   margin: 5px;
  68.   transition: 0.5s;
  69.   cursor: default;
  70. }
  71.  
  72. .button:hover {
  73.   background: #595555;
  74.   transition: 0.5s;
  75.   color: white;
  76.   box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.35);
  77.   border-radius: 10px;
  78. }
  79.  
  80. .button:active {
  81.   background: #423e3e;
  82.   transition: 0.5s;
  83.   color: white;
  84.   box-shadow: 20px 20px 15px rgba(0, 0, 0, 0.5);
  85.   border-radius: 10px;
  86. }
Add Comment
Please, Sign In to add comment