Advertisement
MrFrazSultan

Style

Oct 6th, 2023
1,154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.83 KB | None | 0 0
  1. .mazepool-logo {
  2.   height: 15px !important;
  3. }
  4.  
  5. .slogan {
  6.   font-size: small;
  7. }
  8.  
  9. .logo-flex {
  10.   display: flex;
  11.   align-content: center;
  12.   flex-direction: column;
  13.   justify-content: center;
  14. }
  15.  
  16. .mazepool-container {
  17.   background-color: #e7f1fe;
  18.   display: flex;
  19.   justify-content: center;
  20.   align-items: center;
  21.  
  22.   min-height: 20px;
  23.   border: 4px rgb(255, 255, 255) solid;
  24.   border-radius: 10px;
  25.  
  26.   gap: 5px;
  27.  
  28.   position: fixed;
  29.   z-index: 9999;
  30.   top: 0px;
  31.   padding: 10px 10px;
  32.   left: 250px;
  33. }
  34.  
  35. .flex {
  36.   min-width: 20px;
  37.   min-height: 20px;
  38.   align-items: center;
  39.   margin: 2px;
  40.   gap: 2rem;
  41. }
  42.  
  43. .numberField {
  44.   width: 50px;
  45.   font-size: 17;
  46. }
  47. .buttons {
  48.   width: 70px;
  49.   cursor: pointer;
  50.   font-size: 18px;
  51. }
  52.  
  53. .results {
  54.   background-color: rgb(251, 251, 251);
  55.   border: 0.5px white solid;
  56. }
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement