Add background image.
This commit is contained in:
parent
3a6422d0f6
commit
96df3c1e3c
|
@ -0,0 +1,22 @@
|
|||
# Windows thumbnail cache files
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
ehthumbs_vista.db
|
||||
|
||||
# Dump file
|
||||
*.stackdump
|
||||
|
||||
# Folder config file
|
||||
[Dd]esktop.ini
|
||||
|
||||
# Recycle Bin used on file shares
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Windows Installer files
|
||||
*.cab
|
||||
*.msi
|
||||
*.msm
|
||||
*.msp
|
||||
|
||||
# Windows shortcuts
|
||||
*.lnk
|
Binary file not shown.
After Width: | Height: | Size: 1.0 MiB |
Binary file not shown.
After Width: | Height: | Size: 3.9 MiB |
12
style.css
12
style.css
|
@ -3,6 +3,16 @@ html, body {
|
|||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
background-image: url('assets/bg-1440p.jpg');
|
||||
background-color: #2b2b2b;
|
||||
background-size: cover;
|
||||
background-position: bottom right;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, p {
|
||||
margin: 0;
|
||||
|
@ -22,7 +32,7 @@ a:hover {
|
|||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: #2b2b2b;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
min-width: 100vw;
|
||||
min-height: 100vh;
|
||||
max-width: 100vw;
|
||||
|
|
Loading…
Reference in New Issue