Last active
November 30, 2025 10:32
-
-
Save blacksmithop/fcea959213d02d75757b59b2ca3f137c to your computer and use it in GitHub Desktop.
Criminds - Common
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| background: #0f0f14; | |
| color: #e5e7eb; | |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| } | |
| .user-information-container { | |
| background: linear-gradient(180deg, #1a1a24 0%, #16161f 100%); | |
| border: 1px solid #2a2a3a; | |
| border-radius: 12px; | |
| padding: 20px; | |
| box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); | |
| } | |
| .user-information-container h3 { | |
| font-size: 13px; | |
| font-weight: 600; | |
| letter-spacing: 0.5px; | |
| text-transform: uppercase; | |
| color: #9ca3af; | |
| margin-bottom: 16px; | |
| padding-bottom: 12px; | |
| border-bottom: 1px solid #2a2a3a; | |
| } | |
| .user-information-container table { | |
| width: 100%; | |
| border-collapse: collapse; | |
| } | |
| .user-information-container tr { | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.05); | |
| } | |
| .user-information-container tr:last-child { | |
| border-bottom: none; | |
| } | |
| .user-information-container td { | |
| padding: 10px 8px; | |
| font-size: 13px; | |
| } | |
| .user-information-container td:first-child { | |
| font-weight: 600; | |
| color: #d1d5db; | |
| width: 35%; | |
| } | |
| .user-information-container td:last-child { | |
| text-align: right; | |
| color: #e5e7eb; | |
| } | |
| .user-information-container a { | |
| color: #6366f1; | |
| text-decoration: none; | |
| transition: color 0.2s ease; | |
| } | |
| .user-information-container a:hover { | |
| color: #818cf8; | |
| } | |
| .progress-bar-container { | |
| background: rgba(0, 0, 0, 0.3); | |
| border-radius: 6px; | |
| height: 20px; | |
| overflow: hidden; | |
| position: relative; | |
| margin: 6px 0; | |
| border: 1px solid rgba(255, 255, 255, 0.08); | |
| } | |
| .progress-bar { | |
| height: 100%; | |
| border-radius: 5px; | |
| transition: width 0.3s ease; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .progress-bar.energy { | |
| background: linear-gradient(90deg, #10b981 0%, #059669 100%); | |
| } | |
| .progress-bar.brave { | |
| background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%); | |
| } | |
| .progress-bar.happy { | |
| background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%); | |
| } | |
| .progress-bar.health { | |
| background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%); | |
| } | |
| .progress-bar.chain { | |
| background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%); | |
| } | |
| .progress-text { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| font-size: 11px; | |
| font-weight: 600; | |
| color: #ffffff; | |
| text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); | |
| z-index: 1; | |
| white-space: nowrap; | |
| } | |
| .menu-container { | |
| background: linear-gradient(180deg, #1a1a24 0%, #16161f 100%); | |
| border: 1px solid #2a2a3a; | |
| border-radius: 12px; | |
| padding: 16px; | |
| margin-top: 16px; | |
| box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); | |
| } | |
| .menu-container h3 { | |
| font-size: 13px; | |
| font-weight: 600; | |
| letter-spacing: 0.5px; | |
| text-transform: uppercase; | |
| color: #9ca3af; | |
| margin-bottom: 12px; | |
| padding-bottom: 10px; | |
| border-bottom: 1px solid #2a2a3a; | |
| } | |
| .menu-item { | |
| display: flex; | |
| align-items: center; | |
| padding: 10px 12px; | |
| margin-bottom: 4px; | |
| border-radius: 8px; | |
| color: #d1d5db; | |
| text-decoration: none; | |
| transition: all 0.2s ease; | |
| font-size: 13px; | |
| font-weight: 500; | |
| border: 1px solid transparent; | |
| } | |
| .menu-item:hover { | |
| background: rgba(99, 102, 241, 0.1); | |
| border-color: rgba(99, 102, 241, 0.3); | |
| color: #ffffff; | |
| transform: translateX(2px); | |
| } | |
| .menu-item.active { | |
| background: rgba(99, 102, 241, 0.15); | |
| border-color: #6366f1; | |
| color: #ffffff; | |
| } | |
| .menu-item svg, | |
| .menu-item i { | |
| margin-right: 10px; | |
| opacity: 0.7; | |
| } | |
| .menu-badge { | |
| margin-left: auto; | |
| background: #6366f1; | |
| color: #ffffff; | |
| font-size: 11px; | |
| font-weight: 600; | |
| padding: 2px 8px; | |
| border-radius: 10px; | |
| min-width: 20px; | |
| text-align: center; | |
| } | |
| .button, | |
| button { | |
| background: linear-gradient(180deg, #6366f1 0%, #4f46e5 100%); | |
| color: #ffffff; | |
| border: none; | |
| border-radius: 8px; | |
| padding: 10px 16px; | |
| font-size: 13px; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: all 0.2s ease; | |
| box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3); | |
| } | |
| .button:hover, | |
| button:hover { | |
| background: linear-gradient(180deg, #818cf8 0%, #6366f1 100%); | |
| transform: translateY(-1px); | |
| box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4); | |
| } | |
| .button:active, | |
| button:active { | |
| transform: translateY(0); | |
| } | |
| input[type="text"], | |
| input[type="password"], | |
| input[type="email"], | |
| textarea, | |
| select { | |
| background: rgba(0, 0, 0, 0.3); | |
| border: 1px solid #2a2a3a; | |
| border-radius: 8px; | |
| color: #e5e7eb; | |
| padding: 10px 12px; | |
| font-size: 13px; | |
| transition: all 0.2s ease; | |
| width: 100%; | |
| } | |
| input[type="text"]:focus, | |
| input[type="password"]:focus, | |
| input[type="email"]:focus, | |
| textarea:focus, | |
| select:focus { | |
| outline: none; | |
| border-color: #6366f1; | |
| box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); | |
| } | |
| input::placeholder { | |
| color: #6b7280; | |
| } | |
| a { | |
| color: #6366f1; | |
| text-decoration: none; | |
| transition: color 0.2s ease; | |
| } | |
| a:hover { | |
| color: #818cf8; | |
| } | |
| .content-section-container { | |
| background: linear-gradient(180deg, #1a1a24 0%, #16161f 100%); | |
| border: 1px solid #2a2a3a; | |
| border-radius: 12px; | |
| padding: 24px; | |
| box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); | |
| } | |
| h1, | |
| h2, | |
| h3, | |
| h4, | |
| h5, | |
| h6 { | |
| color: #f9fafb; | |
| font-weight: 600; | |
| margin-bottom: 12px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment