@wendongfly/zihi 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/files.html +6 -3
- package/dist/icon.png +0 -0
- package/dist/icon.svg +31 -2
- package/dist/index.html +18 -8
- package/dist/index.js +95 -95
- package/dist/login.html +20 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/login.html
CHANGED
|
@@ -36,11 +36,29 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.logo {
|
|
39
|
+
display: inline-flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
gap: 0.08em;
|
|
39
42
|
font-size: 2.2rem;
|
|
40
43
|
font-weight: 800;
|
|
41
44
|
letter-spacing: -1px;
|
|
45
|
+
user-select: none;
|
|
46
|
+
}
|
|
47
|
+
.logo .bolt {
|
|
48
|
+
display: inline-block;
|
|
49
|
+
width: 0.9em;
|
|
50
|
+
height: 0.9em;
|
|
51
|
+
position: relative;
|
|
52
|
+
top: 0.02em;
|
|
53
|
+
filter: drop-shadow(0 0 6px rgba(249,115,22,0.6));
|
|
54
|
+
animation: bolt-glow 2s ease-in-out infinite alternate;
|
|
55
|
+
}
|
|
56
|
+
@keyframes bolt-glow {
|
|
57
|
+
from { filter: drop-shadow(0 0 4px rgba(249,115,22,0.4)); }
|
|
58
|
+
to { filter: drop-shadow(0 0 10px rgba(249,115,22,0.8)); }
|
|
42
59
|
}
|
|
43
|
-
.logo
|
|
60
|
+
.logo .zi { color: #e6edf3; }
|
|
61
|
+
.logo .hi { color: #f97316; }
|
|
44
62
|
|
|
45
63
|
form {
|
|
46
64
|
width: 100%;
|
|
@@ -110,7 +128,7 @@
|
|
|
110
128
|
</head>
|
|
111
129
|
<body>
|
|
112
130
|
<div class="card">
|
|
113
|
-
<div class="logo">
|
|
131
|
+
<div class="logo"><svg class="bolt" viewBox="0 0 32 32" fill="none"><defs><linearGradient id="zg" x1="0" y1="0" x2="0.3" y2="1"><stop offset="0%" stop-color="#ffba08"/><stop offset="100%" stop-color="#f97316"/></linearGradient></defs><polygon points="3,2 29,2 29,7 19,7 22,13 17,15 21,25 29,25 29,30 3,30 3,25 14,25 11,19 16,17 12,7 3,7" fill="url(#zg)"/></svg><span class="zi">i</span><span class="hi">Hi</span></div>
|
|
114
132
|
|
|
115
133
|
<div class="occupied" id="occupied"></div>
|
|
116
134
|
|
package/dist/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"type":"module","version":"1.1.
|
|
1
|
+
{"type":"module","version":"1.1.2"}
|