Create historiography.css

This commit is contained in:
2025-07-13 18:34:24 +08:00
committed by GitHub
parent 0d407f1f38
commit f1e8ffda1a

126
assets/historiography.css Normal file
View File

@@ -0,0 +1,126 @@
#amily2_manual_historiography_bureau .mhb-controls-wrapper {
display: flex;
flex-direction: column;
gap: 15px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 6px;
padding: 12px;
margin-top: 5px;
}
#amily2_manual_historiography_bureau .manual-command-block .manual-input {
width: 70px;
}
#amily2_manual_historiography_bureau .editor-buttons-panel .accent {
background: linear-gradient(to right, #FF5722, #E64A19);
border: 1px solid #D84315;
}
#amily2_manual_historiography_bureau .editor-buttons-panel .accent:hover {
box-shadow: 0 0 8px rgba(255, 87, 34, 0.7);
transform: scale(1.03);
}
#amily2_manual_historiography_bureau .editor-buttons-panel .secondary {
background: linear-gradient(to right, #ffb300, #fb8c00);
border: 1px solid #f57c00;
}
#amily2_manual_historiography_bureau .editor-buttons-panel .secondary:hover {
box-shadow: 0 0 8px rgba(255, 179, 0, 0.7);
transform: scale(1.03);
}
#amily2_manual_historiography_bureau .mhb-selector-container {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 12px;
width: 100%;
}
#amily2_manual_historiography_bureau .mhb-selector-group {
display: flex;
flex-direction: column;
flex-grow: 1;
min-width: 0;
gap: 5px;
}
#amily2_manual_historiography_bureau .mhb-selector-group > label {
width: auto;
margin-top: 0;
}
#amily2_manual_historiography_bureau .auto-command-block {
display: flex;
justify-content: space-around;
align-items: center;
gap: 15px;
margin-top: 15px;
padding: 10px;
border: 1px solid var(--secondary-border);
border-radius: 8px;
}
#amily2_manual_historiography_bureau .auto-control-pair {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
}
#amily2_manual_historiography_bureau #amily2_mhb_small_expedition_execute {
width: auto;
flex-grow: 0;
}
#amily2_manual_historiography_bureau #amily2_mhb_small_expedition_execute {
background: linear-gradient(135deg, #8e44ad, #6a1b9a);
border: 1px solid #4a148c;
color: white;
text-shadow: 0 0 2px rgba(0,0,0,0.3);
transition: all 0.3s ease;
}
#amily2_manual_historiography_bureau #amily2_mhb_small_expedition_execute:hover {
background: linear-gradient(135deg, #9b59b6, #8e44ad);
box-shadow: 0 0 10px rgba(142, 68, 173, 0.7);
transform: translateY(-1px);
}
#amily2_manual_historiography_bureau #amily2_mhb_small_manual_execute {
background: linear-gradient(135deg, #ff8a65, #ff5722);
border: 1px solid #e64a19;
}
#amily2_manual_historiography_bureau #amily2_mhb_small_manual_execute:hover {
background: linear-gradient(135deg, #ff7043, #f4511e);
box-shadow: 0 0 10px rgba(255, 87, 34, 0.6);
}
#amily2_manual_historiography_bureau .danger {
background: linear-gradient(135deg, #e74c3c, #c0392b);
border: 1px solid #a93226;
color: white;
}
#amily2_manual_historiography_bureau .danger:hover {
background: linear-gradient(135deg, #ec7063, #e74c3c);
box-shadow: 0 0 10px rgba(231, 76, 60, 0.7);
}
#amily2_manual_historiography_bureau .success {
background: linear-gradient(135deg, #2ecc71, #27ae60);
border: 1px solid #229954;
color: white;
}
#amily2_manual_historiography_bureau .success:hover {
background: linear-gradient(135deg, #58d68d, #2ecc71);
box-shadow: 0 0 10px rgba(46, 204, 113, 0.7);
}