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
| .screen-top-center {
| min-height: 480px;
| margin: 5px;
| border-radius: 5px;
| }
| .top-center-data {
| height: 40%;
| display: grid;
| grid-template-columns: 1fr 1fr 1fr;
| grid-gap: 5px;
| padding: 5px;
| }
| .data-item {
| background-color: #fff;
| padding: 0 10px;
| }
| .data-item-title {
| color: #000;
| font-size: 16px;
| margin-top: 10px;
| }
|
| .data-item-desc {
| color: #3de7c9;
| font-size: 16px;
| font-weight: 550;
| margin-top: 10px;
| }
|
| .dv-digital-flop {
| width: 100%;
| height: 30px;
| margin-top: 5px;
| }
|
| .top-center-chart {
| height: 60%;
| display: grid;
| grid-template-columns: 2fr 1fr;
| grid-gap: 5px;
| padding: 0 5px;
| }
| .chart-item {
| background-color: #fff;
| }
| .dv-scr-rank-board {
| height: 200px;
| padding: 0 10px;
| }
|
| .pond-section {
| position: relative;
| width: 100%;
| height: 0;
| /* padding-top: 100%; */
| margin-top: 15px;
| }
| .dv-water-level-pond {
| position: absolute;
| top: 0;
| left: 0;
| height: 100%;
| width: 100%;
| }
| .screen-top-header {
| height: 40px;
| }
| .header-left {
| width: 30px;
| }
|
| .header-right {
| width: calc(100% - 30px);
| }
| .header-title {
| color: #000;
| font-size: 16px;
| }
|
| .dv-dec-3 {
| width: 50px !important;
| height: 20px !important;
| margin-left: 10px;
| }
| .flex-l {
| display: flex;
| flex-wrap: wrap;
| justify-content: flex-start;
| align-items: center;
| }
|
| .flex-c {
| display: flex;
| justify-content: center;
| align-items: center;
| }
|
| .flex-r {
| display: flex;
| justify-content: flex-end;
| align-items: center;
| }
|
|