-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.css
82 lines (74 loc) · 1.18 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
body{
margin: 0px;
padding: 0px;
background: tomato;
}
.main{
height: 100vh;
width: 100%;
position: absolute;
overflow: hidden;
}
.box{
width: 300px;
height: 180px;
background: tomato;
position: absolute;
top:28%;
left: 0;
}
.b2{
top:60%;
}
.box img{
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
}
.box:before,
.box:after
{
content: '';
position: absolute;
z-index: -1;
box-shadow: 0 0 25px 5px rgba(0,0,0,1);
top:23px;
left: 23px;
bottom: 23px;
right: 10px;
border-radius: 100px / 5px;
}
.info{
font-family: fantasy;
font-size: 32px;
color:white;
position: relative;
top:50%;
left: 0%;
transform: translateY(-50%);
z-index: -2;
}
.time{
font-family: fantasy;
font-size: 24px;
letter-spacing: 2px;
}
.title{
font-family: fantasy;
font-size: 70px;
color:#444;
opacity: .2;
letter-spacing: 25px;
position: absolute;
top:15%;
left: 50%;
transform: translate(-50%,-50%);
}
.trophy{
position: absolute;
bottom: -10%;
right: -5%;
transform: rotate(-20deg);
opacity: .2;
}