-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (41 loc) · 1.14 KB
/
style.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
.logo {
width: 40px;
height: 40px;
}
.image {
/* The image used */
background-image: url("title.jpg");
/* Set a specific height */
height: 615px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.wrapper1 {
position: absolute;
top: 80%;
left: 70%;
transform: translate(-70%, -70%);
color: white;
font-family: cursive;
}
h4:before {
content: "I am Ramish Hassan";
font-family: cursive;
font-weight: bold;
font-size: 2rem;
animation: animate infinite 9s;
}
@keyframes animate {
0% {
content: "I am a Programmer";
}
20% {
content: "I am a Web developer";
}
40% {
content: "I am a Coder";
}
}