Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.58 KB | None | 0 0
  1. .bonus-item {
  2.  
  3.   color: #fff;
  4.   text-align: center;
  5.   display: flex;
  6.   align-items: center;
  7.   justify-content: center;
  8.   flex-direction: column;
  9.   cursor: pointer;
  10. }
  11.  
  12. .bonus-item:hover {
  13.  
  14.   background-image: url(../assets/img/bg-bonus.png);
  15.   transition: all 1s ease-in-out;
  16. }
  17. .bonus-value {
  18.  
  19.   font-weight: 700;
  20.   font-size:    3rem;
  21.  
  22. }
  23. .bonus-basic {
  24.  
  25.   color: #c3da44;
  26.  
  27. }
  28. .bonus-text {
  29.  
  30.   font-size:    0.75rem;
  31.   font-weight: 500;
  32. }
  33. .bonus-cash {
  34.  
  35.   text-align: center;
  36.   color: #00bff3;
  37.   font-weight: 500;
  38. }
  39. .bonus-cash img {
  40.  
  41.   margin-right: 5px;
  42.  
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement