forked from MWA-DIV-A/LP-Lab-Assignment-04
-
Notifications
You must be signed in to change notification settings - Fork 0
/
event.css
78 lines (69 loc) · 1.16 KB
/
event.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
.navbar {
background-color: #252525;
color: whitesmoke;
overflow: hidden;
padding: 1%;
font-size: 24px;
font-style: italic;
}
body {
background-color: whitesmoke;
animation-name: example;
animation-duration: 2s;
animation-iteration-count: infinite;
}
@keyframes example {
0% {
background-color: red;
}
25% {
background-color: orange;
}
50% {
background-color: yellow;
}
75% {
background-color: greenyellow;
}
100% {
background-color: red;
}
}
.footer {
background-color: #252525;
color: whitesmoke;
overflow: hidden;
padding: 1%;
font-style: italic;
text-align: center;
}
.footer a {
text-align: center;
padding: 14px 16px;
}
.navbar a {
float: right;
text-align: center;
padding: 14px 16px;
}
a:hover {
background-color: whitesmoke;
color: #252525;
}
.fname {
text-align: right;
padding: 14px 16px;
}
.gallery {
text-align: center;
font-size: 21px;
width: 70%;
margin-left: 15%;
}
.contact {
text-align: center;
border: 2px dashed;
width: 30%;
margin-left: 36.5%;
padding: 0 0 30px 40px;
}