-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimation_fun.css
More file actions
86 lines (78 loc) · 1.43 KB
/
animation_fun.css
File metadata and controls
86 lines (78 loc) · 1.43 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
82
83
84
.header {
position: relative;
overflow: hidden;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
align-content: flex-start;
height: 50vw;
min-height: 250px;
max-height: 450px;
min-width: 300px;
color: #eee;
}
.header:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 40%, rgba(27, 32, 48, 1) 100%);
}
.header:before {
content: "";
width: 100%;
height: 200%;
position: absolute;
top: 0;
left: 0;
-webkit-backface-visibility: hidden;
-webkit-transform: translateZ(0);
backface-visibility: hidden;
scale(1.0, 1.0);
background: #1d2c3b;
background-image: url(./Christmas_Party_2021.JPG);
background-repeat: repeat-y;
background-size: 100%;
background-attachment: fixed;
}
.header a {
color: #eee;
}
.info {
width: 100%;
padding: 8% 8% 0 8%;
text-align: center;
text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.author{
display:inline-block;
width:85px;
height:85px;
border-radius:60%;
background:url(Parul.png) center no-repeat;
background-size:cover;
box-shadow:0 2px 3px rgba(0,0,0,0.3);
}
.info h4,
.meta {
font-size: 1.5em;
}
.info h1,
{
font-size: 2em;
}
.meta {
font-size: 1.5em;
}
@keyframes grow {
0% {
transform: scale(1) translateY(0px);
}
50% {
transform: scale(1.2) translateY(-400px);
}
}