Advertisement
Slapoguzov

Untitled

Dec 7th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.00 KB | None | 0 0
  1. html,body{
  2.     margin:0;
  3.     padding:0;
  4. }
  5. body{
  6.     width:350px;
  7.     height:260px;
  8.     padding-top:10px;
  9.     padding-bottom:20px;
  10. }
  11. .cards{
  12.     text-align:left;
  13. }
  14. .cards li{
  15.     width:37px;
  16.     height:55px;
  17. }
  18. li:not(:nth-of-type(1)){
  19.     margin-left:-20px;
  20. }
  21. ul:after{
  22.     display:block;
  23.     position:absolute;
  24.     right:0;
  25.     top:0;
  26.     width:37px;
  27.     height:55px;
  28.     border:1px dashed #33bb33;
  29.     content:"";
  30.     border-radius:5px;
  31. }
  32. li:nth-of-type(4n+1):not(:last-child){
  33.     background:#ffcccc;
  34. }
  35. ul:not(:nth-of-type(1)) li:nth-of-type(4n+2):not(:last-child){
  36.     background:#ccffcc;
  37. }
  38. ul:not(:nth-of-type(2n+1)) li:nth-of-type(4n+4):not(:last-child){
  39.     background:#ccccff;
  40. }
  41. ul:not(:nth-of-type(4)) li:nth-of-type(4n+3):not(:last-child){
  42.     background:#ccffff;
  43. }
  44. ul:nth-of-type(1) li:nth-of-type(2n):not(:last-child){
  45.     background:#ffffcc;
  46. }
  47. ul:nth-of-type(3) li:nth-of-type(4n):not(:last-child){
  48.     background:#ffccff;
  49. }
  50. selector{
  51.     background:#ffffff;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement