-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_style.css
More file actions
81 lines (74 loc) · 1.6 KB
/
index_style.css
File metadata and controls
81 lines (74 loc) · 1.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
table, th, td {
border:1px solid blue;
padding: 15px;
}
table {
background-color: blue;
}
th, td {
background-color: yellow;
}
body{
animation: v 45s infinite;
color:black;
font-family:/* this is comment */ 'helvetica';
padding: 20px;
}
.headerstyle {
background-color: #8cbfd4;
color: white;
padding: 20px;
text-align: center;
font-size: 3em;
width: 90%;
margin: auto;
border-radius:25px;
}
h2 {
background-color: rgba(164, 221, 245, 0.5);
color: white;
padding: 20px;
text-align: center;
width: 90%;
margin-left: auto;
margin-right: auto;
border-radius:25px;
}
h3 {
background-color: rgba(164, 221, 245, 0.5);
color: white;
padding:15px;
padding-right: 20px;
padding-left: 20px;
text-align: center;
width:90%;
margin-left:auto;
margin-right: auto;
border-radius:25px;
}
.content {
background-color: rgba(252, 252, 252, 0.5);
color:#41494d ;
width: 90%;
padding: 20px;
margin-left: auto;
margin-right: auto;
border-radius:25px;
}
.paragraph {
text-align: center;
}
.list {
text-align: left;
}
a {
color: #41494d;
}
@keyframes v{
0% {background:linear-gradient(to top, orange, yellow, green, cyan, blue, violet);}
20% {background:linear-gradient(to top, yellow, green, cyan, blue, violet, orange);}
40% {background:linear-gradient(to top, green, cyan, blue, violet, orange, yellow);}
60% {background:linear-gradient(to top, cyan, blue, violet, orange, yellow, green);}
80% {background:linear-gradient(to top, blue, violet, orange, yellow, green, cyan);}
100% {background:linear-gradient(to top, violet, orange, yellow, green, cyan, blue);}
}