mirror of
https://github.com/LearnOpenGL-CN/LearnOpenGL-CN.git
synced 2025-08-23 04:35:28 +08:00
48 lines
730 B
CSS
48 lines
730 B
CSS
.important .admonition-title, .attention .admonition-title {
|
|
display: none;
|
|
}
|
|
|
|
.note .admonition-title {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
background: #6ab0de;
|
|
color: #FFF;
|
|
display: block;
|
|
margin: -12px;
|
|
margin-bottom: 10px !important;
|
|
padding: 6px 12px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.admonition p{
|
|
margin: auto;
|
|
}
|
|
|
|
.important, .attention {
|
|
display: block;
|
|
margin: 20px;
|
|
padding: 15px;
|
|
color: #444;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.important {
|
|
background-color: #D8F5D8;
|
|
border: 2px solid #AFDFAF;
|
|
}
|
|
|
|
.attention {
|
|
background-color: #FFD2D2;
|
|
border: 2px solid #E0B3B3;
|
|
}
|
|
|
|
.note {
|
|
display: block;
|
|
padding: 12px;
|
|
margin-bottom: 24px;
|
|
color: #444;
|
|
border-radius: 5px;
|
|
background-color: #E7F2FA;
|
|
border: 2px solid #6AB0DE;
|
|
}
|