-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (72 loc) · 1.53 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
.coin_tracker_rate_packages {
display: table;
width: 100%;
border-collapse: collapse;
}
.coin_tracker_rate_packages .coin_tracker_rate_package{
display: table-cell;
text-align: center;
border: 2px dashed #ccc;
border-collapse: collapse;
padding: 15px 10px;
}
.ctp_name {
font-size: 95%;
font-weight: bold;
}
.ctp_value {
font-weight: bold;
color: #7ac143;
margin-top: 10px;
}
.coin_tracker_history:after {
clear: both;
content: " "; display: block;
}
.coin_tracker_history {
margin: -5px;
box-sizing: border-box;
}
.coin_tracker_history * {
box-sizing: border-box;
}
.coin_tracker_history .ct_history_item{
width: 20%;
float: left;
padding: 5px 5px;
text-align: center;
}
.ct_history_item_inner {
border: 1px dashed #cccccc;
padding: 15px 0px;
}
.ct_history_item_inner .ct_rate {
}
.ct_history_item_inner .ct_date {
font-size: 90%;
margin: 10px 0;
}
.ct_history_item_inner .ct_date i {
font-size: 80%;
position: relative;
top: -1px;
}
.ct_history_item_inner .ct_status {
font-size: 90%;
}
.ct_history_item_inner .ct_status.ct_approved i{
color: #7ac143;
}
.ct_history_item_inner .ct_status.ct_pending i{
color: #d6b46b;
}
@media screen and (max-width: 700px) {
.coin_tracker_history .ct_history_item{
width: 25%;
}
}
@media screen and (max-width: 560px) {
.coin_tracker_history .ct_history_item{
width: 33.33333333%;
}
}