More actions
Content deleted Content added
overflow auto; |
No edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
.main-wrapper { |
.main-wrapper { |
||
background: #0b0e15; |
background: #0b0e15; |
||
color: |
color: #aaa; |
||
font-family: sans-serif; |
font-family: sans-serif; |
||
⚫ | |||
⚫ | |||
padding: 20px; |
padding: 20px; |
||
display: grid; |
display: inline-grid; |
||
grid-template-columns: 1fr 2fr 2fr; /* 3 columns: left, middle, right */ |
grid-template-columns: 1fr 2fr 2fr; /* 3 columns: left, middle, right */ |
||
gap: 20px; |
gap: 20px; |
||
⚫ | |||
width: 100px; |
|||
overflow: auto; |
overflow: auto; |
||
} |
|||
.section-title { |
|||
⚫ | |||
margin-bottom: 5px; |
|||
⚫ | |||
color: #aaa; |
|||
} |
} |
||
/* === Left Section === */ |
|||
.left-section { |
.left-section { |
||
display: grid; |
display: grid; |
||
grid-template-rows: auto auto 1fr auto; |
grid-template-rows: auto auto 1fr auto; |
||
gap: 15px; |
gap: 15px; |
||
width: 100%; |
|||
} |
} |
||
Line 29: | Line 22: | ||
display: flex; |
display: flex; |
||
align-items: center; |
align-items: center; |
||
margin-bottom: 10px; |
|||
gap: 10px; |
gap: 10px; |
||
} |
} |
||
.left-section .bottom-row { |
.left-section .bottom-row { |
||
display: |
display: flex; |
||
align-items: center; |
align-items: center; |
||
gap: 10px; |
gap: 10px; |
||
Line 49: | Line 41: | ||
} |
} |
||
.left-section .weapons {display: grid;} |
|||
.left-section .big-cell { |
.left-section .big-cell { |
||
width: 150px; |
|||
height: 100px; |
height: 100px; |
||
/* aspect-ratio: 1.5; */ |
|||
background: #1a1a1a; |
background: #1a1a1a; |
||
border: 2px solid #444; |
border: 2px solid #444; |
||
display: flex; |
display: flex; |
||
align-items: center; |
align-items: center; |
||
justify-content: |
justify-content: space-evenly; |
||
} |
} |
||
/* === Middle Section === */ |
|||
.middle-section { |
.middle-section { |
||
width: 100%; |
|||
display: grid; |
display: grid; |
||
grid-template-rows: auto 1fr; |
grid-template-rows: auto 1fr; |
||
gap: 15px; |
gap: 15px; |
||
align-items: flex-start; |
|||
} |
} |
||
Line 85: | Line 75: | ||
} |
} |
||
/* === Right Section === */ |
|||
.right-section { |
.right-section { |
||
width: 100%; |
|||
display: grid; |
display: grid; |
||
grid-template-rows: auto 1fr auto; |
grid-template-rows: auto 1fr auto; |
||
gap: 15px; |
gap: 15px; |
||
⚫ | |||
} |
} |
||
Line 113: | Line 102: | ||
.middle-section .section-title { |
.middle-section .section-title { |
||
margin-top: |
margin-top: 80px; |
||
} |
} |
||
.right-section .section-title { |
.right-section .section-title { |
||
margin-top: |
margin-top: 80px; |
||
} |
} |
||
.small-cell, .big-cell { |
.small-cell, .big-cell { |
Latest revision as of 17:26, 12 May 2025
.main-wrapper {
background: #0b0e15;
color: #aaa;
font-family: sans-serif;
font-size: 14px;
text-transform: uppercase;
padding: 20px;
display: inline-grid;
grid-template-columns: 1fr 2fr 2fr; /* 3 columns: left, middle, right */
gap: 20px;
overflow: auto;
}
.left-section {
display: grid;
grid-template-rows: auto auto 1fr auto;
gap: 15px;
}
.left-section .top-row {
display: flex;
align-items: center;
gap: 10px;
}
.left-section .bottom-row {
display: flex;
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 .weapons {display: grid;}
.left-section .big-cell {
height: 100px;
background: #1a1a1a;
border: 2px solid #444;
display: flex;
align-items: center;
justify-content: space-evenly;
}
.middle-section {
display: grid;
grid-template-rows: auto 1fr;
gap: 15px;
align-items: flex-start;
}
.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 {
display: grid;
grid-template-rows: auto 1fr auto;
gap: 15px;
justify-content: flex-start;
}
.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: 80px;
}
.right-section .section-title {
margin-top: 80px;
}
.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;
}