Newer
Older
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
@import '../base/color';
@import '../base/breakpoint';
.cv {
display: flex;
flex-direction: column;
align-items: center;
width: 27.5rem;
@media #{$large-phone} {
width: 100%;
}
.cv-content-date {
display: flex;
flex-direction: row;
justify-content: space-around;
width: 100%;
// margin-top: 1em;
.cv-date-group {
display: flex;
flex-direction: column;
width: 38vw;
align-items: center;
align-self: center;
.cv-date {
color: $google-text-1;
&::first-letter {
text-transform: uppercase;
}
}
}
}
.cv-load {
min-height: 5.25rem;
display: flex;
align-items: center;
.cv-load-content {
display: flex;
flex-direction: row;
align-items: center;
.cv-load-section {
display: flex;
flex-direction: column;
align-items: center;
padding: 0.5rem 0.5rem;
&.cv-load-section-left {
align-items: flex-end;
}
&.cv-load-section-right {
align-items: flex-start;
}
.cv-load-value {
flex-direction: row;
& span {
align-self: flex-end;
margin-left: 0.5em;
}
}
}
}
}
.cv-euro {
display: flex;
flex-direction: row;
.cv-euro-link {
text-decoration: none;
color: transparent;
}
.cv-euro-fluid {
padding: 0 0.5rem;
display: flex;
align-items: center;
.cv-euro-fluid-icon {
margin-right: 0.5rem;
}
& div {
padding-top: 0.2rem;
}
}
}
.cv-info {
min-height: 1.5rem;
display: flex;
align-items: center;
}
.electricity {
color: $elec-color;
}
.electricity-compare {
color: $elec-compare-color;
}
.water {
color: $water-color;
}
.water-compare {
color: $water-compare-color;
}
.gas {
color: $gas-color;
}
.gas-compare {
color: $gas-compare-color;
}
.multifluid {
color: $text-white;
}
.multifluid-compare {
color: $multi-compare-color;
}
.error {
color: $red-no-data;
}
.error-line {
color: $red-no-data;
cursor: pointer;
display: flex;
align-items: center;
}
.underlined-error {
border-bottom: solid 1px $red-no-data;
}
.warning-icon {
margin-right: 4px;
}
.multifluid-compare {
color: $multi-compare-color;
}
.cv-button {
border: none;
background: none;
color: $google-text-2;
text-decoration: underline;
}
}