apirrone
commited on
Commit
·
5d9d5ac
1
Parent(s):
267ddb2
adding gif
Browse files- index.html +2 -6
- reachy_mini_clock/assets/aze +0 -0
- style.css +5 -45
index.html
CHANGED
|
@@ -52,12 +52,8 @@
|
|
| 52 |
<section class="panel visual">
|
| 53 |
<div class="placeholder">
|
| 54 |
<div class="placeholder-tag">Preview</div>
|
| 55 |
-
<
|
| 56 |
-
|
| 57 |
-
<div class="antenna antenna-right"></div>
|
| 58 |
-
<div class="antenna antenna-left"></div>
|
| 59 |
-
</div>
|
| 60 |
-
<p class="placeholder-caption">Placeholder image for the future Reachy Mini clock view.</p>
|
| 61 |
</div>
|
| 62 |
</section>
|
| 63 |
</main>
|
|
|
|
| 52 |
<section class="panel visual">
|
| 53 |
<div class="placeholder">
|
| 54 |
<div class="placeholder-tag">Preview</div>
|
| 55 |
+
<img src="reachy_mini_clock/assets/clock.gif" alt="Reachy Mini clock animation" class="clock-gif" />
|
| 56 |
+
<p class="placeholder-caption">Live preview of Reachy Mini showing the time with its antennas.</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
</div>
|
| 58 |
</section>
|
| 59 |
</main>
|
reachy_mini_clock/assets/aze
ADDED
|
File without changes
|
style.css
CHANGED
|
@@ -179,52 +179,12 @@ h1 {
|
|
| 179 |
font-size: 0.85rem;
|
| 180 |
}
|
| 181 |
|
| 182 |
-
.
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
background: radial-gradient(circle at 50% 40%, rgba(125, 211, 252, 0.1), transparent 60%),
|
| 186 |
-
radial-gradient(circle at 50% 70%, rgba(168, 85, 247, 0.12), transparent 55%),
|
| 187 |
-
#0b1021;
|
| 188 |
border-radius: 14px;
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
}
|
| 192 |
-
|
| 193 |
-
.dial {
|
| 194 |
-
width: 70%;
|
| 195 |
-
height: 70%;
|
| 196 |
-
border-radius: 50%;
|
| 197 |
-
border: 2px dashed rgba(255, 255, 255, 0.15);
|
| 198 |
-
box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.15);
|
| 199 |
-
position: relative;
|
| 200 |
-
}
|
| 201 |
-
|
| 202 |
-
.dial::after {
|
| 203 |
-
content: '';
|
| 204 |
-
position: absolute;
|
| 205 |
-
inset: 32%;
|
| 206 |
-
border-radius: 50%;
|
| 207 |
-
background: radial-gradient(circle, rgba(125, 211, 252, 0.25), transparent 70%);
|
| 208 |
-
}
|
| 209 |
-
|
| 210 |
-
.antenna {
|
| 211 |
-
position: absolute;
|
| 212 |
-
height: 34%;
|
| 213 |
-
width: 4px;
|
| 214 |
-
background: linear-gradient(180deg, rgba(125, 211, 252, 0.9), rgba(168, 85, 247, 0.9));
|
| 215 |
-
border-radius: 999px;
|
| 216 |
-
transform-origin: bottom center;
|
| 217 |
-
bottom: 15%;
|
| 218 |
-
}
|
| 219 |
-
|
| 220 |
-
.antenna-right {
|
| 221 |
-
transform: rotate(30deg);
|
| 222 |
-
right: 50%;
|
| 223 |
-
}
|
| 224 |
-
|
| 225 |
-
.antenna-left {
|
| 226 |
-
transform: rotate(-60deg);
|
| 227 |
-
left: 50%;
|
| 228 |
}
|
| 229 |
|
| 230 |
.placeholder-caption {
|
|
|
|
| 179 |
font-size: 0.85rem;
|
| 180 |
}
|
| 181 |
|
| 182 |
+
.clock-gif {
|
| 183 |
+
display: block;
|
| 184 |
+
width: 100%;
|
|
|
|
|
|
|
|
|
|
| 185 |
border-radius: 14px;
|
| 186 |
+
border: 1px solid var(--border);
|
| 187 |
+
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 188 |
}
|
| 189 |
|
| 190 |
.placeholder-caption {
|