-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel.css
More file actions
45 lines (43 loc) · 891 Bytes
/
model.css
File metadata and controls
45 lines (43 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
HTML, BODY {
height: 100%;
width: 100%;
height: 100vh;
width: 100vw;
margin:0;
padding:0;
/* required to prevent rogue scrollbars */
overflow: hidden;
/* cosmetic stuff: */
background-color: #000;
}
.wrapper {
background: url('./bgl4.jpg');
background-size: cover !important;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
padding:0;
margin:0;
background-position: center center !important;
background-repeat: no-repeat !important;
/* background-attachment: fixed !important;*/
/* if you want the content to scroll normally: */
overflow: auto;
background-color: #000;
}
.wrapper:after{
position:fixed;
content:"";
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.3);
z-index:-1;
}