diff --git a/README.md b/README.md index 40f4c93..5780346 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ git commit -m "Added desc of git init command" ``` **Задание 4**. Дополните файл style.css. Создайте и примените на странице не менее 5-ти стилей. Индексируйте измененные файлы и выполните коммит. ```sh -git <команда добавления> -git <команда коммита> +git add . +git commit -m "Added desc of git init command" ``` **Задание 5**. Создайте пустой (без файлов) публичный удаленный репозиторий в своем аккаунте на GitHub. diff --git a/static/Erbaum-Book.ttf b/static/Erbaum-Book.ttf new file mode 100644 index 0000000..a08d8e8 Binary files /dev/null and b/static/Erbaum-Book.ttf differ diff --git a/style.css b/style.css index 1e1d79b..153eb90 100644 --- a/style.css +++ b/style.css @@ -1,28 +1,34 @@ +@font-face { + font-family: "Erbaum Book"; + src: url("static/Erbaum-Book.ttf"); +} + +* { + font-family: "Erbaum Book", "Courier New", Courier, monospace; +} + .header { justify-content: center; - text-align:center; + text-align: center; } ol li { list-style-position: inside; } -.exam { - font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; -} #table { - line-height:200% + line-height: 200%; } footer { padding-top: 3px; padding-bottom: 3px; - padding-left: 30px; + padding-left: 30px; background: #444; color: white; } a.foo:hover { - text-decoration-color: black; - color: black; + text-decoration-color: black; + color: black; } a.foo { - text-decoration-color: white; - color: white; + text-decoration-color: white; + color: white; }