Skip to content

Commit 00670d0

Browse files
authored
Update index.html
1 parent 15abf59 commit 00670d0

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

index.html

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -29,33 +29,33 @@
2929
.onboarding-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); display: flex; justify-content: center; align-items: center; z-index: 99999; animation: fadeIn 0.3s ease-in; }
3030
.onboarding-overlay.hidden { display: none; }
3131
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
32-
.onboarding-container { max-width: 340px; width: 85%; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-radius: 20px; padding: 28px 20px; position: relative; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
33-
.onboarding-close-btn { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: none; background: rgba(255, 255, 255, 0.1); border-radius: 50%; color: rgba(255, 255, 255, 0.6); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; z-index: 10; }
34-
.onboarding-close-btn:hover { background: rgba(255, 255, 255, 0.2); color: white; transform: rotate(90deg); }
35-
.onboarding-logo { display: flex; justify-content: center; margin-bottom: 20px; }
32+
.onboarding-container { max-width: 340px; width: 85%; background: rgba(255, 140, 66, 0.95); backdrop-filter: blur(10px); border: 2px solid rgba(255, 107, 53, 0.3); border-radius: 20px; padding: 20px; position: relative; box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3); }
33+
.onboarding-close-btn { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border: none; background: rgba(26, 26, 46, 0.15); border-radius: 50%; color: #1a1a2e; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; z-index: 10; }
34+
.onboarding-close-btn:hover { background: rgba(26, 26, 46, 0.3); color: #1a1a2e; transform: rotate(90deg); }
35+
.onboarding-logo { display: flex; justify-content: center; margin-bottom: 12px; }
3636
.onboarding-logo img { width: 64px; height: 64px; object-fit: contain; }
37-
.onboarding-screen { display: none; text-align: center; animation: slideIn 0.5s ease-in; color: white; }
37+
.onboarding-screen { display: none; text-align: center; animation: slideIn 0.5s ease-in; color: #1a1a2e; }
3838
.onboarding-screen.active { display: block; }
3939
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
40-
.onboarding-screen h1 { font-size: 24px; margin-bottom: 10px; font-weight: 700; }
41-
.onboarding-subtitle { font-size: 14px; color: rgba(255, 255, 255, 0.8); margin-bottom: 24px; line-height: 1.5; }
42-
.onboarding-feature { background: rgba(255, 255, 255, 0.08); border-radius: 14px; padding: 16px; margin-bottom: 12px; text-align: left; }
40+
.onboarding-screen h1 { font-size: 28px; margin-bottom: 8px; font-weight: 700; }
41+
.onboarding-subtitle { font-size: 15px; color: rgba(26, 26, 46, 0.8); margin-bottom: 18px; line-height: 1.4; }
42+
.onboarding-feature { background: rgba(255, 255, 255, 0.5); border-radius: 12px; padding: 12px; margin-bottom: 10px; text-align: left; }
4343
.onboarding-feature-content { display: flex; align-items: flex-start; }
4444
.onboarding-number { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%); border-radius: 50%; font-weight: 700; font-size: 12px; margin-right: 10px; flex-shrink: 0; }
45-
.onboarding-feature h3 { font-size: 14px; margin-bottom: 4px; font-weight: 600; }
46-
.onboarding-feature p { font-size: 12px; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }
47-
.onboarding-dots { display: flex; justify-content: center; gap: 6px; margin: 24px 0 16px; }
48-
.onboarding-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transition: all 0.3s ease; }
49-
.onboarding-dot.active { background: #ff6b35; width: 24px; border-radius: 4px; }
45+
.onboarding-feature h3 { font-size: 15px; margin-bottom: 4px; font-weight: 600; color: #1a1a2e; }
46+
.onboarding-feature p { font-size: 13px; color: rgba(26, 26, 46, 0.75); line-height: 1.3; }
47+
.onboarding-dots { display: flex; justify-content: center; gap: 6px; margin: 16px 0 12px; }
48+
.onboarding-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(26, 26, 46, 0.3); transition: all 0.3s ease; }
49+
.onboarding-dot.active { background: #1a1a2e; width: 24px; border-radius: 4px; }
5050
.onboarding-buttons { display: flex; gap: 12px; justify-content: center; }
51-
.onboarding-btn { padding: 14px 28px; border: none; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
52-
.onboarding-btn-skip { background: transparent; color: rgba(255, 255, 255, 0.6); border: 2px solid rgba(255, 255, 255, 0.2); }
53-
.onboarding-btn-skip:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.9); }
54-
.onboarding-btn-next { background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%); color: white; flex: 1; max-width: 160px; }
51+
.onboarding-btn { padding: 12px 24px; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
52+
.onboarding-btn-skip { background: rgba(255, 255, 255, 0.6); color: #1a1a2e; border: 2px solid rgba(26, 26, 46, 0.2); }
53+
.onboarding-btn-skip:hover { background: rgba(255, 255, 255, 0.9); color: #1a1a2e; border-color: rgba(26, 26, 46, 0.4); }
54+
.onboarding-btn-next { background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%); color: white; flex: 1; max-width: 160px; }
5555
.onboarding-btn-next:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4); }
5656
@media (max-width: 480px) {
57-
.onboarding-container { width: 90%; padding: 20px 16px; }
58-
.onboarding-screen h1 { font-size: 20px; }
57+
.onboarding-container { width: 90%; padding: 16px; }
58+
.onboarding-screen h1 { font-size: 24px; }
5959
.onboarding-logo img { width: 56px; height: 56px; }
6060
}
6161
</style>

0 commit comments

Comments
 (0)