-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
92 lines (79 loc) · 1.36 KB
/
styles.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
background: #333;
padding-top: 200px;
}
.present {
width: 410px;
margin: 0 auto;
}
.box {
width: 400px;
height: 250px;
}
.lid, .box {
background:
-webkit-radial-gradient(white 15%, transparent 15.1%),
-webkit-radial-gradient(white 15%, transparent 15.1%),
rgb(179, 0, 12);
background-position: 0 0, 25px 25px;
background-size: 50px 50px;
position: relative;
margin: 0 auto;
}
.lid {
width: 400px;
height: 70px;
box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
z-index: 1;
padding: 0 2px;
top: 0;
left: 0;
transition:
top ease-out 0.5s,
left ease-out 0.5s,
transform ease-out 0.5s;
}
.lid span, .box span {
position: absolute;
display: block;
background: rgba(0, 179, 44, 0.8);
box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
}
.box span:first-child {
width: 100%;
height: 60px;
top: 80px;
}
.box span:last-child, .lid span {
width: 60px;
height: 100%;
left: 170px;
}
.lid span {
left: 172px;
}
.promo {
color: white;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
position: relative;
top: 10px;
height: 0;
transition: all ease-out 0.7s;
}
.promo p {
font-size: 24px;
margin: 0;
}
.promo h2 {
font-size: 40px;
margin: 0;
}
.present:hover .lid {
top: -100px;
transform: rotateZ(10deg);
left: 10px;
}
.present:hover .promo {
top: -80px;
}