-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
52 lines (47 loc) · 755 Bytes
/
Copy pathmain.css
File metadata and controls
52 lines (47 loc) · 755 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
46
47
48
49
50
51
52
body{
margin: 0;
width: 100%;
height: 100vh;
overflow: hidden;
}
/*.site-wrap{
background:#ffe949;
width: 100%;
height: 100vh;
padding: 10px;
box-sizing: border-box;
}*/
#canvas{
position: fixed;
width: 100%;
height: 100%;
border: 3px solod red;
z-index: 10;
}
.content{
position: absolute;
padding: 10px;
z-index: 100;
}
.content-wrap{
width: 100%;
height: 100%;
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
}
.content>p{
text-align: center;
color: #ffe949;
font-size: 30px;
font-family: 'Montserrat', sans-serif;
}
.logo{
background: url(logoR.svg);
margin: 0 auto;
width:200px;
height: 100px;
background-repeat: no-repeat;
background-size: contain;
}