Raúl Martín 67d50bb8b5 Merge remote-tracking branch 'remotes/origin/v2'
# Conflicts:
#	README.md
#	assets/css/notice.css
#	package.json
#	source/css/style.css
#	static/assets/blue.css
#	static/assets/green.css
#	static/assets/main.js
#	static/assets/pink.css
#	static/assets/prism.js
#	static/assets/red.css
#	static/assets/style.css
#	yarn.lock
2020-07-19 03:06:09 +02:00

71 lines
1.1 KiB
CSS

.notice {
padding: 18px;
line-height: 24px;
margin-bottom: 24px;
border-radius: 4px;
border: #6ab0de 1px solid;
background: rgba(231, 242, 250, 0.2);
}
.notice p:last-child {
margin-bottom: 0
}
.notice-title {
margin: -18px -18px 12px;
padding: 4px 18px;
border-radius: 4px 4px 0 0;
font-weight: 700;
color: #fff;
background: #6ab0de
}
.notice.warning {
background: rgba(250, 226, 226, 0.2);
border: rgba(217, 83, 79, .9) 1px solid;
.notice-title {
background: rgba(217, 83, 79, .9)
}
}
.notice.info {
background: rgba(255, 242, 219, 0.2);
border: #f0b37e 1px solid;
.notice-title {
background: #f0b37e
}
}
.notice.note {
background: rgba(231, 242, 250, 0.2);
border: #6ab0de 1px solid;
.notice-title {
background: #6ab0de
}
}
.notice.tip {
background: rgba(231, 242, 250, 0.2);
border: rgba(92, 184, 92, .8) 1px solid;
.notice-title {
background: rgba(92, 184, 92, .8)
}
}
.icon-notice {
display: inline-flex;
align-self: center;
margin-right: 8px;
img, svg {
height: 1em;
width: 1em;
fill: currentColor
}
img, .baseline svg {
top: 0.125em;
position: relative
}
}