More actions
Content deleted Content added
mNo edit summary |
m Messing around |
||
Line 8: | Line 8: | ||
gap: 20px; |
gap: 20px; |
||
/* justify-items: start; */ |
/* justify-items: start; */ |
||
width: |
width: 100px; |
||
} |
} |
||
.section-title { |
.section-title { |
||
Line 33: | Line 33: | ||
.left-section .bottom-row { |
.left-section .bottom-row { |
||
display: |
display: grid; |
||
align-items: center; |
align-items: center; |
||
gap: 10px; |
gap: 10px; |
||
Line 49: | Line 49: | ||
.left-section .big-cell { |
.left-section .big-cell { |
||
width: |
width: 150px; |
||
height: |
height: 100px; |
||
/* aspect-ratio: 1.5; */ |
/* aspect-ratio: 1.5; */ |
||
background: #1a1a1a; |
background: #1a1a1a; |
||
Line 56: | Line 56: | ||
display: flex; |
display: flex; |
||
align-items: center; |
align-items: center; |
||
justify-content: center; |
|||
} |
|||
.left-section .big-cell img { |
|||
max-width: 100px; |
|||
max-height: 100px; |
|||
} |
} |
||
Revision as of 23:54, 10 May 2025
.main-wrapper {
background: #0b0e15;
color: white;
font-family: sans-serif;
padding: 20px;
display: grid;
grid-template-columns: 1fr 2fr 2fr; /* 3 columns: left, middle, right */
gap: 20px;
/* justify-items: start; */
width: 100px;
}
.section-title {
font-size: 14px;
margin-bottom: 5px;
text-transform: uppercase;
color: #aaa;
}
/* === Left Section === */
.left-section {
display: grid;
grid-template-rows: auto auto 1fr auto;
gap: 15px;
width: 100%;
}
.left-section .top-row {
display: flex;
align-items: center;
margin-bottom: 10px;
gap: 10px;
}
.left-section .bottom-row {
display: grid;
align-items: center;
gap: 10px;
}
.left-section .small-cell {
width: 60px;
height: 60px;
background: #1a1a1a;
border: 2px solid #444;
display: flex;
align-items: center;
justify-content: center;
}
.left-section .big-cell {
width: 150px;
height: 100px;
/* aspect-ratio: 1.5; */
background: #1a1a1a;
border: 2px solid #444;
display: flex;
align-items: center;
justify-content: center;
}
/* === Middle Section === */
.middle-section {
width: 100%;
display: grid;
grid-template-rows: auto 1fr;
gap: 15px;
}
.middle-section .backpack-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);
gap: 15px;
}
.middle-section .small-cell {
width: 60px;
height: 60px;
background: #1a1a1a;
border: 2px solid #444;
display: flex;
align-items: center;
justify-content: center;
}
/* === Right Section === */
.right-section {
width: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
gap: 15px;
}
.right-section .quick-use-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 15px;
}
.right-section .small-cell {
width: 60px;
height: 60px;
background: #1a1a1a;
border: 2px solid #444;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px; /* Increase size of + symbol */
color: #666; /* Light color for the + symbol */
}
.middle-section .section-title {
margin-top: 90px;
}
.right-section .section-title {
margin-top: 90px;
}
.small-cell, .big-cell {
border-radius: 6px;
}
/* === Safe Pocket Section === */
.right-section .safe-pocket-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}