initial commit
This commit is contained in:
commit
7246e3f892
10 changed files with 1728 additions and 0 deletions
185
styles/ikonis.css
Normal file
185
styles/ikonis.css
Normal file
|
|
@ -0,0 +1,185 @@
|
|||
|
||||
/* --- Motherboard Specific Styling --- */
|
||||
|
||||
.motherboard-content {
|
||||
padding: 1.5rem;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
background: #0d0d16;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.motherboard-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-bottom: 2px solid #ff2e63;
|
||||
padding-bottom: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
position: sticky;
|
||||
top: -1.5rem;
|
||||
background: #0d0d16;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
.motherboard-header h2 {
|
||||
margin: 0;
|
||||
color: #ff2e63;
|
||||
border: none;
|
||||
font-size: 1.8rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.slots-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
background: #ff2e63;
|
||||
padding: 0.5rem 1.2rem;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 0 15px rgba(255, 46, 99, 0.4);
|
||||
}
|
||||
|
||||
.slot-override-btn {
|
||||
background: rgba(0,0,0,0.3);
|
||||
color: white;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
border-radius: 50%;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.motherboard-card {
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
border: 1px solid #2d3436;
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
margin-bottom: 1.5rem;
|
||||
transition: border-color 0.2s;
|
||||
}
|
||||
|
||||
.motherboard-card:hover {
|
||||
border-color: #ff2e63;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
padding: 0.75rem 1rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid #2d3436;
|
||||
}
|
||||
|
||||
.card-header h3 {
|
||||
margin: 0;
|
||||
font-size: 1.1rem;
|
||||
color: #ff2e63;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.aug-stats {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.aug-effect {
|
||||
font-size: 1.05rem;
|
||||
color: #e0e0e0;
|
||||
}
|
||||
|
||||
.aug-cost {
|
||||
font-size: 0.85rem;
|
||||
color: #888;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* --- Feature Slots --- */
|
||||
|
||||
.attached-feature {
|
||||
border: 2px dashed #333;
|
||||
border-radius: 8px;
|
||||
min-height: 50px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-top: 0.5rem;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.attached-feature.empty:hover {
|
||||
border-color: #ff2e63;
|
||||
background: rgba(255, 46, 99, 0.05);
|
||||
}
|
||||
|
||||
.attached-feature.filled {
|
||||
border-style: solid;
|
||||
border-color: #00d2ff;
|
||||
background: rgba(0, 210, 255, 0.05);
|
||||
justify-content: flex-start;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.feature-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.feature-content img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border: 1px solid #00d2ff;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.feature-content .name {
|
||||
flex: 1;
|
||||
font-size: 0.95rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.feature-content .remove {
|
||||
color: #ff2e63;
|
||||
cursor: pointer;
|
||||
padding: 0.2rem 0.5rem;
|
||||
}
|
||||
|
||||
.drop-zone {
|
||||
color: #444;
|
||||
font-size: 0.9rem;
|
||||
text-transform: uppercase;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* --- Sections --- */
|
||||
|
||||
.section-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.add-augment-btn {
|
||||
background: #ff2e63;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue