-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathapp.css
More file actions
83 lines (75 loc) · 1.62 KB
/
app.css
File metadata and controls
83 lines (75 loc) · 1.62 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
82
83
.header {
padding: 5px 15px 5px 10px;
}
.header-logos {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
gap: 5%;
}
.row {
margin-top: 20px;
}
.card {
margin-bottom: 20px;
}
.tab-content {
padding: 10px 10rem 0 10rem;
}
/* graph background color */
.main-svg {
background-color: transparent !important;
}
.layer.bg * {
fill: none !important;
}
/* Graph legend */
.infolayer .legend .bg {
fill: none !important;
}
/* table */
td {
background-color: transparent !important;
}
th span {
font-weight: bold;
text-align: center;
}
th {
background-color: rgba(202, 65, 123, 0.7) !important;
}
/* Demo button css */
.demo-button {
font-family: Open Sans,sans-serif;
text-decoration: none;
display: inline-flex;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 8px;
font-weight: 700;
height: 2.5rem;
font-size: 13px;
-webkit-padding-start: 1rem;
padding-inline-start: 1rem;
-webkit-padding-end: 1rem;
padding-inline-end: 1rem;
color: #ffffff;
letter-spacing: 2px;
border: solid 1.5px transparent;
box-shadow: 2px 1000px 1px #0c0c0c inset;
background-image: linear-gradient(135deg, #7A76FF, #7A76FF, #7FE4FF);
-webkit-background-size: 200% 100%;
background-size: 200% 100%;
-webkit-background-position: 99%;
background-position: 99%;
background-origin: border-box;
transition: all .4s ease-in-out;
padding-top: 15px;
padding-bottom: 15px;
}
.demo-button:hover {
color: #7A76FF;
}