Guest User

Untitled

a guest
Nov 22nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. .count::after{
  2. content: "2";
  3. display: inline-block;
  4. background: #FF0000;
  5. border-radius: 20%;
  6. padding: 0 0.5em;
  7. transform: scale(0.7);
  8. color: #FFF;
  9. float: right;
  10. position: absolute;
  11. top: 5px;
  12. right: 1.5em;
  13. }
  14.  
  15. .count::after:empty{
  16. display: none;
  17. padding: 0
  18. }
  19.  
  20. @media max-width: 990px{
  21. ...
  22. .count::after{
  23. position: relative;
  24. top: -90%;
  25. right: 0;
  26. }
  27.  
  28. }
Add Comment
Please, Sign In to add comment