-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (53 loc) · 1.13 KB
/
style.css
File metadata and controls
56 lines (53 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
body{
background: url(https://i.ibb.co/vLw26zv/cover1.jpg) center / cover fixed ;
}
*{
margin: 0;
padding: 0;
}
div{
min-height:100vh ;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 50px;
text-decoration: underline;
}
.head{
animation-name:heading ;
color: rgb(255, 255, 255);
font-family: 'Parisienne', cursive;
animation-fill-mode: forwards;
animation-duration: 3s;
}
.cover{
background: linear-gradient(rgba(0,0,0,0.5) , rgba(0,0,0,0.7)) , url(https://i.ibb.co/Ns7Jsxz/joakim-honkasalo-Guq-ZTgx8-Al4-unsplash.jpg) center / cover fixed repeat ;
color: rgb(255, 255, 255);
font-family: 'Parisienne', cursive;
}
.home{
color: blanchedalmond;
font-family: 'Parisienne', cursive;
}
a
{
font-size: 50px;
color: rgb(255, 255, 255);
font-family: 'Parisienne', cursive;
}
p{
color: blanchedalmond;
}
@keyframes heading{
0%{
opacity: 0;
}
25%{
color: blanchedalmond;
}
100%{
opacity: 1;
font-size: 60px;
}
}