-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.css
54 lines (54 loc) · 1.03 KB
/
Main.css
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
53
54
body{
margin:0px;
padding:0px;
}
.main{
height: 100%;
width: 100%;
background-color:#6BC07D;
background-image: url('Lion.png');
background-size: 20% 50%;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
overflow: hidden;
}
.frame{
height: 100%;
width: 100%;
background-color:#fff;
background-image: url('Lion\ 2.png');
background-size:20% 50%;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
position: absolute;
right:0;
}
.separator{
height: 100%;
width:5px;
background-color:#404332;
position: absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
z-index: 9999;
cursor: cell;
}
.dev,
.des{
font-family: sans-serif;
font-size: 2rem;
color:#404332;
letter-spacing: 30px;
position: absolute;
top:50%;
left:25%;
transform: translate(-50%,-50%);
transition:all 0.25s;
}
.des{
left:75%;
z-index: 9999;
}