-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimation.css
More file actions
67 lines (60 loc) · 1.13 KB
/
animation.css
File metadata and controls
67 lines (60 loc) · 1.13 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
.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;
background: url('./assets/images/banner.png') no-repeat center center;
background-size: cover;
}
.social-icons {
position: absolute;
bottom: 40px; /* Adjust this value as needed */
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px; /* Adjust the gap between icons */
}
.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);
}
}