-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
222 lines (194 loc) · 4.74 KB
/
Copy pathstyle.css
File metadata and controls
222 lines (194 loc) · 4.74 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto+Slab:wght@100..900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
:root {
--primary-color: #f6f7fb;
--white-color: #fff;
--black-color: #18191a;
--red-color: #e74c3c;
}
body {
display: flex;
height: 100%;
align-items: center;
justify-content: center;
background: var(--primary-color);
overflow-x: hidden;
overflow-y: auto;
}
body.dark {
--primary-color: #242526;
--white-color: #18191a;
--black-color: #fff;
--red-color: #e74c3c;
}
.scroller {
display: flex;
gap: 20px;
/* Espacement entre les horloges */
flex-shrink: 0;
animation: scroll 50s linear infinite;
width: max-content;
}
@keyframes scroll {
from {
transform: translateX(0);
}
to {
transform: translateX(50%);
/* Défilement sans coupure */
}
}
.container {
padding: 20px;
text-align: center;
border-radius: 10px;
flex: 0 0 auto;
}
.container .heure {
display: flex;
height: 280px;
width: 280px;
border-radius: 50%;
align-items: center;
justify-content: center;
background: var(--white-color);
position: relative;
margin: 1rem;
box-shadow: rgb(20, 60, 100) 10px 10px 10px;
}
.horloge {
width: 200px;
height: 200px;
background: #1e1e1e;
border-radius: 50%;
position: relative;
box-shadow:
10px 10px 20px #141414,
-10px -10px 20px #292929;
display: flex;
align-items: center;
justify-content: center;
}
.horloge::after {
content: "";
position: absolute;
width: 10px;
height: 10px;
background: white;
border-radius: 50%;
}
.heure label {
position: absolute;
inset: 5px;
text-align: center;
transform: rotate(calc(var(--i) * (360deg / 12)));
}
.heure label span {
display: inline-block;
font-size: 20px;
font-weight: 600;
color: var(--black-color);
transform: rotate(calc(var(--i) * (-360deg / 12)));
}
.container .aiguille {
position: absolute;
height: 10px;
width: 10px;
border-radius: 50%;
background-color: red;
display: flex;
justify-content: center;
}
.aiguille::before {
content: "";
position: absolute;
height: 100%;
width: 100%;
z-index: 100;
border-radius: 50%;
background: var(--black-color);
border: 5px solid var(--red-color);
}
.aiguille .hand {
position: absolute;
height: 120px;
width: 2px;
bottom: 0;
transform-origin: bottom;
border-radius: 25px;
background: var(--red-color);
}
.hand.minute {
height: 102px;
width: 5px;
background: var(--black-color);
}
.hand.hour {
height: 90px;
width: 8px;
background: var(--black-color);
}
.horloge-numerique {
font-size: 15px;
font-weight: 600;
color: var(--black-color);
display: inline-block;
padding: 10px 20px;
border-radius: 10px;
background: var(--white-color);
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1), 0 25px 45px rgba(0, 0, 0, 0.1);
position: relative;
text-align: center;
}
.text-Pays {
font-size: 15px;
font-weight: 600;
color: var(--black-color);
display: inline-block;
padding: 10px 20px;
border-radius: 10px;
background: var(--white-color);
position: relative;
text-align: center;
box-shadow: rgba(20, 60, 100, 0.25) 0px 50px 100px -20px, rgba(20, 60, 100, 0.3) 0px 30px 60px -30px, rgba(20, 60, 100, 0.35) 0px -5px 6px 0px inset;
}
.mode-switch {
background: var(--black-color);
color: var(--white-color);
padding: 10px 20px;
border-radius: 10px;
font-size: 14px;
font-weight: 400;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
position: fixed; /* Fixé en bas */
margin-top: 520px; /* Décalage vers le haut */
left: 50%; /* Centrage horizontal */
transform: translateX(-50%); /* Ajuste le centrage */
cursor: pointer;
z-index: 1000; /* Pour qu'il soit au-dessus des horloges */
}
/* .controls {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
pointer-events: none; Empêche de bloquer les clics en dehors
}
.controls button {
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
padding: 10px 15px;
font-size: 20px;
cursor: pointer;
pointer-events: all; Permet d'interagir avec le bouton
}
.controls button:hover {
background-color: rgba(0, 0, 0, 0.8);
} */