Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. ol
  2. {
  3. margin: 0;
  4. padding: 0;
  5. font-size: 28px;
  6. line-height: 200%;
  7. list-style-type: none;
  8. display: inline-block;
  9. }
  10.  
  11. ol > li
  12. {
  13. width: 200px;
  14. text-align: center;
  15. min-height: 100px;
  16. padding: 0px 5px 0px 5px;
  17. float: left;
  18. border-right: 2px dashed #ff00ff;
  19. }
  20.  
  21.  
  22. ol > li:first-child
  23. {
  24. border-left: 2px dashed #ff00ff;
  25. }
  26.  
  27.  
  28. ol > li:hover
  29. {
  30. background-color: #efefef;
  31. cursor: pointer;
  32. }
  33.  
  34. ol > li > a
  35. {
  36. text-decoration: none;
  37. color: #efefef;
  38. display: block;
  39. margin-top: 20px;
  40. }
  41.  
  42. ol > li > a:hover
  43. {
  44. color: #030303;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement