Guest User

Untitled

a guest
Jan 16th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. ul{
  2.  
  3. width:400px;
  4.  
  5. height:400px;
  6.  
  7. margin:50px auto;
  8.  
  9. padding:0;
  10.  
  11. list-style:none;
  12.  
  13. border-right:1px dashed #ccc;
  14.  
  15. border-left:1px dashed #ccc;
  16.  
  17. }
  18.  
  19. li{
  20.  
  21. float:left;
  22.  
  23. box-sizing:border-box;
  24.  
  25. width:30%;
  26.  
  27. margin-right:5%;
  28.  
  29. height:50px;
  30.  
  31. margin-bottom:20px;
  32.  
  33. border-radius:10px;
  34.  
  35. background:#eee;
  36.  
  37. border:1px solid #ddd;
  38.  
  39. text-align:center;
  40.  
  41. line-height:50px;
  42.  
  43. font-size:20px;
  44.  
  45. font-family:"Tahoma", sans-serif;
  46.  
  47. box-shadow:0 2px 4px rgba(0, 0, 0, 0.1);
  48.  
  49. }
  50.  
  51. li:nth-child(3n){
  52.  
  53. margin-right:0;
  54.  
  55. background-color:#5EB95E;
  56.  
  57. color:white;
  58.  
  59. }
Add Comment
Please, Sign In to add comment