style.css 731 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .cite {
  2. color: green;
  3. }
  4. a[href^="https"] {
  5. color: red;
  6. }
  7. .list > li:last-child {
  8. background-color: green;
  9. max-width: 35px;
  10. }
  11. ul + p {
  12. font-size: 26px;
  13. }
  14. .text-box > h3:first-child {
  15. color: pink;
  16. }
  17. #greycol {
  18. color: grey;
  19. }
  20. div p:only-child {
  21. color: red;
  22. }
  23. .text-box p:nth-last-child(2) {
  24. color: green;
  25. }
  26. .yellow {
  27. color: yellow;
  28. }
  29. .bg-box {
  30. height: 300px;
  31. background: url(/img/building.jpg) center / 200px 150px no-repeat,
  32. url(/img/grass.png) bottom / 100px repeat-x,
  33. url(/img/lamp.png) top / 35px 35px repeat-x,
  34. url(/img/donut.png) right / 20px 20px repeat-y,
  35. url(/img/animal.webp) left / 20px 20px repeat-y;
  36. background-color: green;
  37. }