add css images

This commit is contained in:
Alexander Popov 2021-12-30 20:02:32 +03:00
parent e8065c3d7c
commit df28627c68
Signed by: iiiypuk
GPG Key ID: 398FC73478D97286
2 changed files with 9 additions and 0 deletions

View File

@ -3,3 +3,4 @@
- [`@font-face`](font-face.css) - пример добавления шрифта из файла
- [Pixel Art](pixel-art.css) - настройки для рендера Pixel Art на `canvas`
- [Список без точек](ul-remove-bullets.css) - убираем точки (bullet) в списках
- [BG Image cover](back-image-cover.css) - Фоновое изображение по центру

8
CSS/back-image-cover.css Normal file
View File

@ -0,0 +1,8 @@
body{
margin: 0px;
height: 100vh;
background-image: url('../img/landing.jpg');
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}