style.css 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. *{
  2. box-sizing: border-box;
  3. }
  4. /* .container{
  5. text-align: center;
  6. } */
  7. blockquote {
  8. color: green;/*задаем зеленый цвет*/
  9. }
  10. cite > a {
  11. text-decoration: none; /* Убираем подчеркивание у ссылок */
  12. }
  13. cite > a:hover {
  14. cursor: pointer;
  15. text-decoration: underline; /* Добавляем подчеркивание
  16. при наведении курсора мыши на ссылку */
  17. }
  18. a:active {
  19. background-color: yellow;
  20. }
  21. a[href^='https://'] {
  22. color: red;
  23. }
  24. ul ~ p {
  25. font-size: 26px;
  26. }
  27. .list > li:last-child {
  28. background-color: blue;
  29. }/*позволяет форматировать последний дочерний
  30. элемент тега который вложен в класс*/
  31. .text-box h3:first-child {
  32. color:pink;
  33. }
  34. #greycol {
  35. color:grey;
  36. }
  37. div p:only-child {
  38. color:red;
  39. }
  40. .text-box p:nth-child(7){
  41. color: green;
  42. }
  43. .yellow {
  44. color: yellow;
  45. }