← スキル一覧に戻る

retro-css-generator
by dreamworks2050
RetroLogin WordPress plugin - A retro-themed login experience for WordPress
⭐ 0🍴 0📅 2025年12月29日
SKILL.md
name: retro-css-generator description: Generate retro-styled CSS for WordPress login page. Use when creating custom login page designs.
Retro CSS Generator
Instructions
When creating retro login page styles:
- Use CSS custom properties for colors and fonts
- Target login-specific selectors (
.login,#loginform) - Apply retro effects subtly - prioritize accessibility
- Keep styles isolated - login page doesn't load theme styles
Retro Style Elements
| Element | CSS Selector | Notes |
|---|---|---|
| Page wrapper | .login | Main container |
| Login form | #loginform | Form element |
| Logo area | .login h1 a | WordPress logo |
| Error box | .login .message | Info/error messages |
| Submit button | .wp-submit-button | Login button |
| Footer | .login footer | Footer area |
Example Pattern
:root {
--retro-bg: #2d1b4e;
--retro-primary: #ff6b9d;
--retro-text: #c8d6e5;
--retro-font: 'Press Start 2P', monospace;
}
.login {
background: var(--retro-bg);
font-family: var(--retro-font);
}
#loginform {
background: rgba(255, 255, 255, 0.05);
border: 2px solid var(--retro-primary);
border-radius: 4px;
}
.wp-submit-button {
background: var(--retro-primary);
color: var(--retro-bg);
border: none;
}
Guidelines
- Define colors as
:rootvariables for easy theming - Test contrast ratios for accessibility
- Use subtle animations (scanlines, glow)
- Don't modify core WordPress functionality
- Keep CSS minimal - login page should load fast
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です