updates to UX and NTFS

This commit is contained in:
overcuriousity
2025-10-21 22:27:08 +02:00
parent 8cf8900784
commit 8fdb737ea8
9 changed files with 659 additions and 413 deletions

View File

@@ -8,7 +8,7 @@ body {
font-family: 'Consolas', 'Courier New', monospace;
background-color: #1a1a1a;
color: #e0e0e0;
line-height: 1.6;
line-height: 1.5;
min-height: 100vh;
display: flex;
flex-direction: column;
@@ -18,13 +18,13 @@ body {
.header {
background-color: #2a2a2a;
border-bottom: 2px solid #3a3a3a;
padding: 15px 0;
padding: 10px 0;
}
.header-content {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
padding: 0 15px;
display: flex;
justify-content: space-between;
align-items: center;
@@ -32,14 +32,14 @@ body {
}
.logo {
font-size: 1.5em;
font-size: 1.3em;
font-weight: bold;
color: #ffffff;
}
.nav {
display: flex;
gap: 20px;
gap: 15px;
}
.nav a {
@@ -55,7 +55,7 @@ body {
/* Main Content */
.main-content {
flex: 1;
padding: 20px;
padding: 12px;
}
.container {
@@ -65,9 +65,9 @@ body {
h1 {
text-align: center;
margin-bottom: 30px;
margin-bottom: 15px;
color: #ffffff;
font-size: 2.2em;
font-size: 1.8em;
font-weight: normal;
}
@@ -82,14 +82,14 @@ h1 {
}
.tab {
padding: 15px 25px;
padding: 10px 20px;
cursor: pointer;
background-color: #2a2a2a;
border-right: 1px solid #3a3a3a;
color: #cccccc;
transition: all 0.2s;
white-space: nowrap;
min-width: 120px;
min-width: 100px;
text-align: center;
}
@@ -112,7 +112,7 @@ h1 {
background-color: #2a2a2a;
border: 1px solid #3a3a3a;
border-radius: 0 0 6px 6px;
padding: 20px;
padding: 12px;
}
.tab-content.active {
@@ -123,25 +123,22 @@ h1 {
.section {
background-color: #252525;
border-radius: 6px;
padding: 20px;
margin-bottom: 20px;
padding: 12px;
margin-bottom: 12px;
border: 1px solid #3a3a3a;
}
.section h2 {
color: #cccccc;
margin-bottom: 15px;
margin-bottom: 10px;
border-bottom: 1px solid #3a3a3a;
padding-bottom: 8px;
padding-bottom: 6px;
font-weight: normal;
font-size: 1.3em;
font-size: 1.2em;
}
.constants {
background-color: #202020;
}
.results {
/* Merged constant and result sections - same background */
.constants, .results {
background-color: #202020;
}
@@ -152,30 +149,36 @@ h1 {
/* Layout */
.constants-calculator-container {
display: grid;
grid-template-columns: 1fr 350px;
gap: 20px;
margin-bottom: 20px;
grid-template-columns: 1fr 320px;
gap: 12px;
margin-bottom: 12px;
}
@media (max-width: 1024px) {
.constants-calculator-container {
grid-template-columns: 1fr;
gap: 15px;
}
}
/* Input Grid */
.input-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 15px;
margin: 20px 0;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 10px;
margin: 12px 0;
}
.constants .input-grid {
display: flex;
flex-direction: column;
gap: 10px;
max-width: 100%;
}
@media (max-width: 768px) {
.input-grid {
grid-template-columns: 1fr;
gap: 12px;
gap: 10px;
}
.constants-calculator-container {
@@ -187,23 +190,23 @@ h1 {
.footer {
background-color: #2a2a2a;
border-top: 1px solid #3a3a3a;
padding: 20px 0;
margin-top: 40px;
padding: 15px 0;
margin-top: 20px;
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
padding: 0 15px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
gap: 20px;
}
.footer-section h3 {
color: #ffffff;
margin-bottom: 10px;
font-size: 1.1em;
margin-bottom: 8px;
font-size: 1.05em;
}
.footer-section p,
@@ -211,7 +214,7 @@ h1 {
color: #cccccc;
font-size: 0.9em;
text-decoration: none;
margin-bottom: 5px;
margin-bottom: 4px;
display: block;
}
@@ -221,8 +224,8 @@ h1 {
.footer-bottom {
text-align: center;
padding-top: 20px;
margin-top: 20px;
padding-top: 15px;
margin-top: 15px;
border-top: 1px solid #3a3a3a;
color: #888888;
font-size: 0.85em;