hugo-theme-paradox/assets/styles/shortcodes/hint.scss

21 lines
405 B
SCSS
Raw Normal View History

2022-10-17 14:46:58 +00:00
.hint {
padding: 1em;
line-height: 2;
2022-12-23 11:21:41 +00:00
margin-block: 1rem;
2022-10-17 14:46:58 +00:00
}
.hint,
.hint.info,
.hint.tip {
background: rgba(142, 226, 142, 0.2);
2022-12-23 11:21:41 +00:00
border-inline-start: 4px solid rgb(142, 226, 142);
2022-10-17 14:46:58 +00:00
}
.hint.warning {
background: rgba(218, 226, 142, 0.2);
2022-12-23 11:21:41 +00:00
border-inline-start: 4px solid rgb(218, 226, 142);
2022-10-17 14:46:58 +00:00
}
.hint.danger {
background: rgba(226, 142, 142, 0.2);
2022-12-23 11:21:41 +00:00
border-inline-start: 4px solid rgb(226, 142, 142);
2022-10-17 14:46:58 +00:00
}