-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (70 loc) · 1.26 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
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
html, body{
height: 100%;
font-family:'Heebo', sans-serif;;
}
img{
height: 500px;
width: 500px;
border-radius: 250px;
box-shadow: rgba(0, 0, 0, 0.2)10px 10px 10px 10px;
margin: 30px;
}
body{
text-align: right;
background-image: url("./backimg.jpg");
}
header{
background-color: rgba(0, 0, 0, 0.2);
width: 100%;
height: 17%;
text-align: center;
padding: 3px;
margin: 0px 0 40px 0;
}
header{
position: relative;
animation: ani;
animation-duration: 3s;
animation-timing-function:linear;
animation-iteration-count: 1;
}
@keyframes ani{
from{
color: rgba(0, 0, 0, 0.2);
width: 30%;
height: 7%;
}
to{
width: 100%;
height: 17%;
color: black;
}
}
h3, h4{
background-color: rgba(0, 0, 0, 0.2);
}
#contact{
font-size: 20px;
text-align: left;
margin: 50px 0px 10px 0px;
float: left;
}
/* img{
position: relative;
animation: im;
animation-duration: 2s;
animation-timing-function:linear;
animation-iteration-count: 1;
}
@keyframes im{
from{
right: 10px;
width: 200px;
height: 200px;
}
to{
left: 200px;
width: 500px;
height: 500px;
}
} */