forked from JC144/EDF_Simulateur_Prix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
169 lines (141 loc) · 2.89 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
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.main-title {
font-size: 24px;
color: #000;
font-weight: bold;
line-height: 1.2;
}
.sub-title {
font-size: 18px;
color: #333;
}
.table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
background-color: #fff;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 4px;
}
/* Style table header */
.table thead th {
background-color: #353535;
/* Material Design Blue */
color: #fff;
font-weight: bold;
text-align: left;
padding: 12px 16px;
border-bottom: 2px solid #353535;
/* Slightly darker shade of blue */
}
/* Style table rows */
.table tbody td {
padding: 10px;
}
/* Hover effect on table rows */
.table tbody tr:hover {
background-color: #f5f5f5;
color: black;
}
/* cursor for expandable table rows*/
.table tbody tr th[data-bs-toggle="collapse"] {
cursor: pointer;
}
.table tbody .collapse.in {
display: table-row;
}
tbody.table-group-divider tr:first-child td,
tbody.table-group-divider tr:first-child th {
background: #63a91e !important;
color: white;
}
th[aria-expanded="false"] i.fa-solid {
transition: all .25s ease;
}
th[aria-expanded="true"] i.fa-solid {
transform: rotate(90deg);
transition: all .25s ease;
}
h1 a {
text-decoration: none;
color: #000;
}
.toast-icon {
margin-left: -6px;
margin-right: 3px;
}
.btn-circle {
width: 30px;
height: 30px;
min-width: 30px;
min-height: 30px;
padding: 0px;
border-radius: 15px;
text-align: center;
font-size: 12px;
line-height: 1.42857;
}
h5.conso-tt {
width: fit-content;
margin: 0 auto;
}
.custom-file-button input[type=file] {
margin-left: -2px !important;
}
.custom-file-button input[type=file]::-webkit-file-upload-button {
display: none;
}
.custom-file-button input[type=file]::file-selector-button {
display: none;
}
.custom-file-button:hover label {
background-color: #dde0e3;
cursor: pointer;
}
.maxinput {
max-width: 690px;
margin: auto;
text-align: center;
}
.maxcard {
max-width: 890px;
margin: auto;
}
.table-group-divider tr .badge {
position: relative;
padding: 10px;
}
.table-group-divider tr .badge:hover {
z-index: 1000;
}
.table-group-divider tr span.bulle-mounth {
position: absolute;
top: 0%;
right: 0%;
transform: scale(0.125);
opacity: 0;
z-index: 1;
}
.table-group-divider tr:hover .badge:hover>span.bulle-mounth {
position: absolute;
top: 50%;
right: -20%;
transition: all .5s ease;
transform: scale(0.85);
opacity: 1;
z-index: 1000;
border-top-left-radius: 0 !important;
box-shadow: 0 1px 4px 0px rgb(70 70 70);
}
select#monthBeginSelector,
select#monthEndSelector {
min-width: 115px;
}
select#yearBeginSelector,
select#yearEndSelector {
min-width: 80px;
}