-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexreact.css
More file actions
79 lines (63 loc) · 1.26 KB
/
indexreact.css
File metadata and controls
79 lines (63 loc) · 1.26 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,800;1,600;1,800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
html {
font-family: 'Montserrat', sans-serif;
--webkit-font-smoothing: antialiased;
--moz-osx-font-smoothing: grayscale;
scroll-behavior: smooth;
}
::selection {
background: var(--primary-purple);
color: var(--white);
}
body {
overflow-x: hidden;
}
input {
font-family: 'Montserrat', sans-serif;
}
:root {
--primary-green: #069067;
--primary-purple: #6842EF;
--primary-purple-shade: #8161f4;
--black: #000;
--white: #fff;
--shadow-color: 0px 0px 30px 8px rgba(227, 227, 227, 0.75);
}
.container {
max-width: 1250px;
margin: 0 auto;
}
.chart {
width: 95vw;
margin-block: 2rem;
box-shadow: var(--shadow-color);
border-radius: .5rem;
display: flex;
justify-content: center;
align-items: center;
}
.chart h2 {
margin-top: 1rem;
/* text-align: center; */
opacity: .4;
}
.chart img {
width: 50%;
}
.no-transaction {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.line-chart {
width: 95vw;
box-shadow: var(--shadow-color);
border-radius: .5rem;
}