style.css 1.2 KB

1234567891011121314151617181920212223242526
  1. /*Первый уровень*/
  2. span{background:linear-gradient(180deg,#00008B,#00ff00)}
  3. /*Второй уровень*/
  4. a[href^="https://"]{background:red}
  5. li+li+li:last-child{background:blue}
  6. ul+p{font-size: 26px}
  7. /*Третий уровень*/
  8. span+div+h3{background: pink}
  9. #greycol{background: grey}
  10. div+div{background: red}
  11. div+div+h3+p{background: green}
  12. .yellow{background: yellow}
  13. /*Четвёртый уровеень*/
  14. body{width: 100%; height: 100%;position: absolute;top:0;left:0;overflow: auto;}
  15. .bg-box{
  16. width: 100%;
  17. height: 100%;
  18. background:
  19. url(https://img2.goodfon.ru/wallpaper/big/0/5b/pole-zelen-trava-dom-derevya.jpg) 50% 50% no-repeat ,
  20. url(https://www.freeiconspng.com/uploads/lamp-png-0.png) 0% 0% repeat-x,
  21. url(https://www.freeiconspng.com/uploads/grass-png-images-pictures-transparent-28.png) 100% 100% repeat-x ,
  22. url(https://avatanplus.com/files/resources/mid/58eb07b830eab15b56162788.png) 100% 100% repeat-y ,
  23. url(https://vignette.wikia.nocookie.net/mashaandthebear/images/e/e0/Ёжик.png/revision/latest?cb=20180209130328&path-prefix=ru) 0% 0% repeat-y ,
  24. green 50% 50% no-repeat;
  25. background-size: 50% 50% , 5% 15% , 25% 20% , 4% 4% , 4% 6% , 100% 100%;
  26. }