- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS-Coursework-Week2.css
More file actions
Latest commit
43 lines (36 loc) · 728 Bytes
/
Copy pathCSS-Coursework-Week2.css
File metadata and controls
43 lines (36 loc) · 728 Bytes
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
@keyframes colorchange {
from {background-color:rgb(13,0,255);}
to {background-color:rgb(0,179,255);}
}
body {
color:rgb(204,209,247);
animation: colorchange 5s infinite;
}
h1 {
text-align: center;
}
p {
font-family: verdana;
font-size:20px;
}
.navbar {
overflow: hidden;
background-color:rgb(1,8,89);
margin-top:15px;
margin-bottom:20px;
}
.navbara {
float: left;
font-size:16px;
color: white;
text-align: center;
padding:14px16px;
text-decoration: none;
}
header {
text-align: center;
font-size:22px;
font-weight: bold;
font-family: Lucida, Times New Roman;
color:#e6d2ff;
}