-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
173 lines (168 loc) · 3.54 KB
/
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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
body {
background: linear-gradient(72.44deg, #0b0827 0%, #1b1646 100%);
margin: 50px 0;
padding: 0;
}
.coin_main {
overflow: auto;
position: relative;
width: 470px;
height: 150px;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(131deg, #4e2252 0%, #421446 100%);
border-radius: 8px;
}
.coin_main .coin_head {
background: linear-gradient(93.94deg, #603365 0%, #49174e 100%);
border-radius: 8px 8px 0px 0px;
height: 70%;
}
.coin_main .coin_chart {
padding: 5px;
height: 35px;
}
.coin_main .coin_chart svg {
/* overflow: inherit; */
}
.coin_main .coin_chart polyline {
stroke: #fff;
}
.coin_main .coin_chart circle {
fill: #fff;
}
.coin_main .coin_some_effect {
position: absolute;
border-top-left-radius: 8px;
border-bottom: 150px solid rgba(255, 255, 255, 0.034);
border-right: 100px solid transparent;
width: 35%;
}
.coin_image {
height: 100%;
width: 100px;
float: left;
text-align: center;
}
.coin_image img {
position: relative;
height: 64px;
border-radius: 100%;
top: 50%;
transform: translateY(-50%);
}
.coin_info {
float: right;
height: 100%;
width: calc(100% - 100px);
}
.coin_info .coin_info_left {
position: relative;
text-align: left;
top: 50%;
transform: translateY(-50%);
float: left;
}
.coin_info .coin_info_left h1 {
font-size: 22px;
font-weight: bold;
color: #c3a634;
margin: 0;
margin-bottom: 5px;
}
.coin_info .coin_info_left h1 small {
font-weight: normal;
font-size: 15px;
color: #745b5b;
}
.coin_info .coin_info_left h1 small span {
font-size: 20px;
margin: 0 3px;
}
.coin_info .coin_info_left h2 {
margin: 0;
margin-top: 5px;
color: #fff;
font-style: normal;
font-weight: normal;
font-size: 24px;
}
.coin_info .coin_info_right {
position: relative;
top: 50%;
transform: translateY(-50%);
float: right;
text-align: right;
margin-right: 15px;
}
.coin_info .coin_info_right ul {
margin: 0;
padding: 0;
}
.coin_info .coin_info_right ul li {
list-style: none;
color: #a39898;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 15px;
letter-spacing: 0.06em;
margin: 4px 0;
}
.coin_info .coin_info_right ul li small {
font-weight: bold;
font-size: 14px;
margin-left: 5px;
line-height: 15px;
text-align: right;
letter-spacing: 0.02em;
color: #745b5b;
}
.coin_info .coin_info_right ul li:first-child {
font-weight: bold;
font-size: 17px;
line-height: 17px;
color: #fff;
letter-spacing: 0.06em;
margin: 0;
margin-bottom: 10px;
}
.loss {
background: linear-gradient(278deg, #401431 0%, #4b2630 100%);
}
.loss .coin_head {
background: linear-gradient(94.48deg, #460f0f -32.65%, #3f133b 95.3%);
}
.loss .coin_info .coin_info_right ul li:first-child {
color: crimson;
}
.loss .coin_chart polyline {
stroke: crimson;
stroke-width: 2;
}
.loss .coin_chart circle {
fill: crimson;
}
.loss .coin_info .coin_info_left h2 {
color: crimson;
}
.gain {
background: linear-gradient(278deg, #242a34 0%, #3c4c45 100%);
}
.gain .coin_head {
background: linear-gradient(94.52deg, #133f15 -32.66%, #252c35 100%);
}
.gain .coin_info .coin_info_right ul li:first-child {
color: limegreen;
}
.gain .coin_chart polyline {
stroke: limegreen;
stroke-width: 2;
}
.gain .coin_chart circle {
fill: limegreen;
}
.gain .coin_info .coin_info_left h2 {
color: limegreen;
}