"src/git@gitlab.cas.mcmaster.ca:schankuc/2XB3.git" did not exist on "44b31aaf333b9fe3fe88c329e3ca60edb1aa581b"
Newer
Older
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
html {
@apply bg-dark-800;
}
}
#nprogress .bar {
background: rgb(37 99 235) !important;
}
#nprogress .spinner-icon {
border-top-color: rgb(37 99 235) !important;
border-left-color: rgb(37 99 235) !important;
}
#nprogress .peg {
box-shadow: 0 0 10px rgb(37 99 235), 0 0 5px rgb(37 99 235) !important;
}
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
.coin-app {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 64px;
color: white;
}
.coin-search {
margin-bottom: 64px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.coin-text {
margin-bottom: 32px;
text-align: center;
}
.coin-refresh {
/* padding-left: 8px; */
width: 100px;
height: 50px;
border-radius: 4px;
border: none;
background: linear-gradient(to right, #50c9c3, #96deda);
margin-bottom: 20px;
}
.coin-input {
padding-left: 16px;
width: 300px;
height: 50px;
border-radius: 4px;
border: none;
background-image: linear-gradient(to right, #f2709c, #ff9472);
}
.coin-input::placeholder {
color: #e2e2e2;
}
.coin-container {
font-family: "Poppins", sans-serif;
font-weight: 700;
font-size: 17px;
display: flex;
justify-content: center;
}
.coin-row {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
height: 80px;
color: white;
width: 1500px;
}
.coin {
display: flex;
align-items: center;
padding-right: 24px;
min-width: 300px;
}
.coin .coin-name {
width: 250px;
}
.coin img {
height: 30px;
width: 30px;
margin-right: 10px;
}
.coin-symbol {
text-transform: uppercase;
}
.coin-data {
display: flex;
text-align: right;
justify-content: space-between;
width: 100%;
}
.coin-price {
width: 110px;
}
.coin-volume {
width: 155px;
}
.coin-marketcap {
width: 230px;
}
.coin-percent {
width: 100px;
}
.red {
color: #f00606;
}
.green {
color: #11d811;
}