More actions
Technofied (talk | contribs) Remove old admonition code, fix up tip some more (?) |
Technofied (talk | contribs) Attempt to fix weird code block issues |
||
Line 31: | Line 31: | ||
.admonition-title { | .admonition-title { | ||
font-weight: bold; | font-weight: bold; | ||
margin-bottom: | background-color: transparent; | ||
padding: 0; | |||
border: none; | |||
display: inline-block; /* Use inline-block to allow margin */ | |||
margin-bottom: 0; /* Adjust margin as needed */ | |||
} | } | ||
.admonition-text { | .admonition-text { | ||
margin: 0; | margin: 0; | ||
background-color: transparent; | |||
padding: 0; | |||
border: none; | |||
display: block; /* Ensure text is block-level */ | |||
} | } | ||
Revision as of 06:47, 12 August 2024
/* CSS placed here will be applied to all skins */
/* To make images responsive */
img {
max-width:100%;
height:auto;
}
/* Base Admonition Styles */
.admonition {
display: flex;
align-items: flex-start;
border-radius: 4px;
padding: 16px;
margin: 1.5em 0;
border: 1px solid #ddd;
}
.admonition-icon {
font-size: 24px;
margin-right: 12px;
display: flex;
align-items: center;
justify-content: center;
}
.admonition-content {
flex: 1;
}
.admonition-title {
font-weight: bold;
background-color: transparent;
padding: 0;
border: none;
display: inline-block; /* Use inline-block to allow margin */
margin-bottom: 0; /* Adjust margin as needed */
}
.admonition-text {
margin: 0;
background-color: transparent;
padding: 0;
border: none;
display: block; /* Ensure text is block-level */
}
/* Specific Admonition Types */
/* Note */
.admonition-note {
background-color: #f0f6ff;
border-left: 4px solid #2196f3;
}
/* Tip */
.admonition-tip {
background-color: #e6ffed;
border-left: 4px solid #4caf50;
display: flex;
align-items: center;
}
/* Caution */
.admonition-caution {
background-color: #fff4e5;
border-left: 4px solid #ff9800;
}
/* Warning */
.admonition-warning {
background-color: #ffe6e6;
border-left: 4px solid #f44336;
}