forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
55 lines (51 loc) · 823 Bytes
/
main.css
File metadata and controls
55 lines (51 loc) · 823 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
44
45
46
47
48
49
50
51
52
53
54
55
img{
max-width:100%;
border: 3px solid;
animation-name: imgBorder;
animation-duration: 15s;
animation-iteration-count: infinite;
}
body {
font-family: 'Kanit', sans-serif;
background-color:#D4CDF4;
padding-left: 10px;
}
h1{
text-align: center;
font-size: 25px;
text-decoration: underline;
color: #815E5B;
}
h2{
text-align: center;
font-size: 22px;
text-decoration: underline;
color: #685155;
}
p{
text-align: left;
font-size: 18px;
color: #7A6F9B;
}
ul{
text-align: left;
font-size: 16px;
color: #8B86C1;
}
@keyframes imgBorder{
0% {
border-color: #E23813;
}
25%{
border-color: #E2DF13;
}
50%{
border-color: #13E263;
}
75%{
border-color: #1356E2;
}
100%{
border-color: #A313E2;
}
}