Advertisement
DaniDori

Untitled

Apr 15th, 2024
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.98 KB | None | 0 0
  1. input[type="number"]::-webkit-outer-spin-button,
  2. input[type="number"]::-webkit-inner-spin-button {
  3.     -webkit-appearance: none; // Yeah, yeah everybody write about it
  4. }
  5.  
  6. input[type='number'],
  7. input[type="number"]:hover,
  8. input[type="number"]:focus {
  9.     appearance: none;
  10.     -moz-appearance: textfield;
  11. }
  12.  
  13. .igra-btn {
  14.   background-color: #4CAF50; /* Зеленый цвет */
  15.   border: none;
  16.   color: white;
  17.   padding: 15px 32px;
  18.   text-align: center;
  19.   text-decoration: none;
  20.   display: inline-block;
  21.   font-size: 16px;
  22.   position: fixed;
  23.   right: 100px;
  24.   top: 100px;
  25.   z-index: 9999;
  26.   border-radius: 8px;
  27.   height: 50px;
  28. }
  29.  
  30. .igra-btn-percent {
  31.   background-color: #42aaff; /* Голубой цвет */
  32.   border: none;
  33.   color: white;
  34.   padding: 15px 32px;
  35.   text-align: center;
  36.   text-decoration: none;
  37.   display: inline-block;
  38.   font-size: 16px;
  39.   position: fixed;
  40.   right: 550px;
  41.   top: 100px;
  42.   z-index: 9999;
  43.   border-radius: 8px;
  44.   height: 50px;
  45. }
  46.  
  47. .igra-btn-display {
  48.   background-color: #ff0000; /* Красный цвет */
  49.   border: none;
  50.   color: white;
  51.   padding: 4px 4px;
  52.   text-align: center;
  53.   text-decoration: none;
  54.   display: inline-block;
  55.   position: fixed;
  56.   left: 30px;
  57.   top: 30px;
  58.   z-index: 9999;
  59.   border-radius: 8px;
  60.   height: 24px;
  61.   width: 24px;
  62. }
  63.  
  64. .igra-input {
  65.   border: none;
  66.   background-color: #4CAF50;
  67.   color: white;
  68.   outline: #9ee7a1 ;
  69.   position: fixed;
  70.   right: 250px;
  71.   top: 100px;
  72.   z-index: 9999;
  73.   border-radius: 8px;
  74.   height: 50px;
  75.   padding: 15px 32px;
  76.   font-size: 16px;
  77.   width: 250px;
  78. }
  79.  
  80. .item-profit {
  81.   font-size: 16px;
  82.   z-index: 9999;
  83.   color: #4CAF50;
  84.   padding-left: 10px;
  85. }
  86.  
  87. .d-n {
  88.   display: none;
  89. }
  90.  
  91. .promo-input {
  92.   border: none;
  93.   background-color: #555;
  94.   color: white;
  95.   outline: #9ee7a1 ;
  96.   position: fixed;
  97.   top: 50px;
  98.   z-index: 9999;
  99.   border-radius: 8px;
  100.   height: 50px;
  101.   padding: 15px 32px;
  102.   font-size: 12px;
  103.   width: 250px;
  104.   right: 250px;
  105. }
  106.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement