Add security and more documentation

Add security and more documentation
This commit is contained in:
Master3395
2025-09-11 20:17:54 +02:00
parent dfbbccf073
commit 601434eab6
15 changed files with 3344 additions and 142 deletions

View File

@@ -334,3 +334,85 @@ input:checked + .slider:before {
z-index: 9999;
pointer-events: none;
}
/* OS Compatibility Styles */
.compatibility-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin: 20px 0;
}
.os-card {
background: var(--bg-secondary, #f8f9ff);
border: 1px solid var(--border-primary, #e8e9ff);
border-radius: 8px;
padding: 20px;
transition: all 0.3s ease;
}
.os-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.os-card h3 {
color: var(--text-primary, #2f3640);
margin-bottom: 15px;
font-size: 18px;
font-weight: 600;
}
.os-card ul {
list-style: none;
padding: 0;
margin: 0 0 15px 0;
}
.os-card li {
padding: 5px 0;
color: var(--text-secondary, #64748b);
font-size: 14px;
}
.os-card p {
margin: 5px 0;
color: var(--text-secondary, #64748b);
font-size: 13px;
}
.troubleshooting-section {
margin: 20px 0;
}
.troubleshooting-section h4 {
color: var(--text-primary, #2f3640);
margin: 15px 0 10px 0;
font-size: 16px;
font-weight: 600;
}
.code-block {
background: var(--bg-secondary, #f8f9ff);
border: 1px solid var(--border-primary, #e8e9ff);
border-radius: 6px;
padding: 15px;
margin: 10px 0;
overflow-x: auto;
}
.code-block pre {
margin: 0;
font-family: 'Courier New', monospace;
font-size: 13px;
line-height: 1.4;
color: var(--text-primary, #2f3640);
}
.code-block code {
background: none;
padding: 0;
font-family: inherit;
font-size: inherit;
color: inherit;
}