style.css 931 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .quote__color {
  6. color: green;
  7. }
  8. .holder, .text-box {
  9. margin-left: 15px;
  10. }
  11. a[href^='https://'] {
  12. color: red;
  13. }
  14. .list li:nth-child(4) {
  15. background-color: green;
  16. }
  17. .list + p {
  18. font-size: 26px;
  19. }
  20. .text-box h3:first-child {
  21. color: pink;
  22. }
  23. #greycol {
  24. color: grey;
  25. }
  26. .text-box div p {
  27. color: red;
  28. }
  29. .text-box p:nth-child(7) {
  30. color: green;
  31. }
  32. .text-box .yellow {
  33. color: yellow;
  34. }
  35. .bg-box {
  36. width: 100%;
  37. height: 100vh;
  38. background-image: url(../images/nature.jpg), url(../images/lamp.png), url(../images/grass.png), url(../images/hedgehog.png), url(../images/donut.png);
  39. background-repeat: no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
  40. background-position: 50%, 0 0, 0 100%, 0 0, 100% 0;
  41. background-size: auto, 50px, 400px, 50px, 50px;
  42. background-color: green;
  43. }