-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (69 loc) · 1.05 KB
/
Copy pathstyle.css
File metadata and controls
81 lines (69 loc) · 1.05 KB
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
|* {
text-decoration: none;
box-sizing: border-box;
}
body {
background-color: rgb(189, 176, 176);
}
header {
height: 100px;
background-color: rgb(99, 8, 8);
}
header h1 {
color: rgb(231, 170, 56);
text-align: center;
font-size: 40px;
line-height: 100px;
}
.container {
overflow: hidden;
position: relative;
width: 100%;
height: 100%;
}
.container img {
position: absolute;
bottom: 75px;
left: 120%;
}
.container .image-pizza-effect {
animation: fadeIn 2s;
left: 65%;
}
.container li {
margin-top: 80px;
width: 40%;
height: 80px;
white-space: nowrap;
font-weight: 700;
font-size: 40px;
line-height: 80px;
padding-left: 40px;
color: rgb(252, 190, 74);
cursor: pointer;
}
.container .type-pizza-effect {
background-color: rgb(99, 8, 8);
border-radius: 0 0 50px;
animation: slide 2s;
}
/*image effect */
@keyframes fadeIn {
from {
opacity: 0;
left: 120%;
}
to {
opacity: 1;
left: 65%;
}
}
/*type effect*/
@keyframes slide {
from {
width: 0;
}
to {
left: 40%;
}
}