-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
52 lines (46 loc) · 810 Bytes
/
main.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
body{
font-size: 20pt;
margin: 2em;
}
table {
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid black;
padding: 0.5em;
text-align: left;
}
th{
background-color: #cccccc;
}
tr:nth-child(even) {
background-color: #eeeeee;
}
a:link, a:visited {
color: blue;
}
.rainbow_text_animated {
background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
animation: rainbow_animation 18s ease-in infinite;
background-size: 400% 100%;
}
@keyframes rainbow_animation {
0%,100% {
background-position: 0 0;
}
50% {
background-position: 100% 0;
}
}
@media (max-width: 60em){
body{
margin: 0.5em;
}
td, th {
padding: 0.2em;
}
}