style.css 692 B

1234567891011121314151617181920212223242526272829
  1. body {
  2. font-family: Arial, Helvetica, sans-serif;
  3. font-family: Arial, Helvetica, sans-serif;
  4. padding: 30px;
  5. background-color: gray;
  6. }
  7. a {
  8. color: white;
  9. text-decoration: none; /* Отменяем подчеркивание у ссылки */
  10. }
  11. a:visited {
  12. color: white; /*не становитсч синей после посещ*/
  13. }
  14. a:hover {
  15. color: #800000; /* Цвет ссылки при наведении на нее курсора мыши */
  16. text-decoration: underline; /* Добавляем подчеркивание */
  17. }
  18. header {
  19. background-color: rgb(7, 146, 30);
  20. color: white;
  21. padding-left: 10px;
  22. }
  23. .h2style {
  24. font-size: 30px;
  25. font-weight: bold;
  26. }