Advertisement
Webotvurci

profigrass.cz - pp - css - v2

Sep 29th, 2024
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.80 KB | None | 0 0
  1. .row-header-label {
  2.     color: #9A9E9C;
  3.     font-size: 16px;
  4.     font-weight: 400;
  5.     line-height: 160%;
  6.     display: inline-block;
  7.     width: auto !important;
  8. }
  9. .variant-buttons {
  10.     display: flex;
  11.     flex-wrap: wrap;
  12. }
  13. .variant-button {
  14.     font-size: 16px;
  15.     height: 41px;
  16.     padding: 10px;
  17.     border: none;
  18.     border-radius: 0;
  19.     margin-right: 10px;
  20.     margin-bottom: 10px;
  21.     font-weight: 400;
  22.     transition: .3s;
  23.     cursor: pointer;
  24. }
  25. .variant-button.active {
  26.     background-color: #DC1438;
  27.     color: white;
  28. }
  29. .variant-button.clickable {
  30.     background-color: #E0E3E2;
  31.     color: #363E3A;
  32. }
  33. .variant-button.clickable:hover {
  34.     opacity: 0.8;
  35. }
  36. .variant-button.disable {
  37.     opacity: 0.25;
  38.     cursor: not-allowed;
  39.     color: #363E3A;
  40.     background: #E0E3E2;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement