-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (56 loc) · 939 Bytes
/
style.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
.fondo{
/*background-color: #f2f2f2;*/
}
.border-material {
border-bottom: 1px solid #e5e5e5;
padding-bottom: 5px;
}
.box-shadow {
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.mat-tab-label {
font-size: 14px;
font-weight: 500;
color: #212529;
text-transform: uppercase;
padding: 0px 10px;
margin: 0px;
min-width: 0px;
border-radius: 0px;
border: none;
outline: none;
border-bottom: 1px solid #e5e5e5;
}
.button-rainbow {
animation: rainbow 3s infinite, heartbeat 0.6s infinite;
background: #c0392b;
}
@keyframes rainbow {
0% {
background: #1abc9c;
}
10% {
background: #2ecc71;
}
20% {
background: #3498db;
}
30% {
background: #9b59b6;
}
40% {
background: #e74c3c;
}
50% {
background: #e67e22;
}
60% {
background: #f1c40f;
}
70% {
background: #2c3e50;
}
80% {
background: #9b59b6;
}
}