File: info-blocks.css

package info (click to toggle)
borgmatic 2.0.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,752 kB
  • sloc: python: 58,506; sh: 150; makefile: 8; javascript: 5
file content (34 lines) | stat: -rw-r--r-- 636 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* Warning */
.elv-info {
	line-height: 1.5;
	padding: 0.8125em 1em 0.75em; /* 13px 16px 12px /16 */
	margin-left: -1rem;
	margin-right: -1rem;
	margin-bottom: 2em;
	background-color: #dff7ff;
}
.elv-info:before {
	content: "ℹ️ ";
}
.elv-info-warn {
	background-color: #ffa;
}
.elv-info-warn:before {
	content: "⚠️ ";
}
.elv-info:first-child {
	margin-top: 0;
}
body > .elv-info {
	margin-left: 0;
	margin-right: 0;
	padding: .5rem 1rem;
}
@media (min-width: 37.5em) and (min-height: 25em) { /* 600px / 400px */
	body > .elv-info-sticky {
		position: sticky;
		top: 0;
		z-index: 2;
		box-shadow: 0 3px 0 0 rgba(0,0,0,.08);
	}
}