Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <ul class="test">
  2. <li class="entering-numbers">
  3. <div class="arrow-up"></div>
  4. <div class="arrow-down"></div>
  5. <input type="text" value="4" readonly>
  6. <label> 123</label>
  7. </li>
  8. </ul>
  9.  
  10. .entering-numbers > input {
  11. width: 15px;
  12. float: left;
  13. display: inline-block;
  14. margin: 0 10px 40px 0;
  15. height: 15px;
  16. text-align: center;
  17. background-color: #efbd16;
  18. border-radius: 2px;
  19. border: none;
  20. color: #1c1c1c;
  21. font-family: GothamPro;
  22. font-size: 12px;
  23. font-weight: 500;
  24. } .entering-numbers > label:after {
  25. display: none;
  26. }
  27. .entering-numbers > label:befor {
  28. display: none;
  29. }
  30.  
  31. .arrow-up {
  32. cursor: pointer;
  33. position: absolute;
  34. top: 4px;
  35. left: 49px;
  36. width: 0;
  37. height: 0;
  38. border-left: 7.5px solid transparent;
  39. border-right: 7.5px solid transparent;
  40. border-bottom: 9px solid #efbd16;
  41. }
  42. .arrow-down {
  43. cursor: pointer;
  44. position: absolute;
  45. top: 36px;
  46. left: 49px;
  47. width: 0;
  48. height: 0;
  49. border-left: 7.5px solid transparent;
  50. border-right: 7.5px solid transparent;
  51. border-top: 9px solid #efbd16;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement