style.css 795 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* Andrey Shevchenko. FEA-23. Home work 2. */
  2. a[href^='https'] {
  3. color: red;
  4. } /* все ссылки начин с https - красные */
  5. /* 1-й способ */
  6. .list > li:last-child a {
  7. background-color: green;
  8. }
  9. /* 2-й способ */
  10. /* div>ul>li:last-of-type {background-color: green;} */
  11. /* 3-й способ */
  12. /* h1+ul>li:last-of-type{background-color: green;} */
  13. ul + p {
  14. font-size: 26px;
  15. }
  16. h1 + p {
  17. margin-bottom: 100px;
  18. }
  19. .text-box h3:first-child {
  20. color: pink;
  21. }
  22. #greycol {
  23. color: gray;
  24. }
  25. div > p:first-child {
  26. color: red;
  27. }
  28. .text-box p:nth-last-child(2) {
  29. color: green;
  30. }
  31. .yellow {
  32. color: yellow;
  33. }
  34. footer {
  35. background-color: rgb(100, 200, 100);
  36. font-weight: 700;
  37. color: blue;
  38. font-family: Arial, Helvetica, sans-serif;
  39. padding: 30px;
  40. }