blob: be7b5ea15ad822c9f11cffc4596589e219077d85 (
plain)
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
|
.post-outdated {
.hint {
position: relative;
margin-top: 20px;
margin-bottom: 20px;
padding: 5px 10px;
border-left: 4px solid rgb(66, 172, 243);
background-color: rgb(239, 245, 255);
border-color: rgb(66, 172, 243);
}
.warn {
position: relative;
margin-top: 20px;
margin-bottom: 20px;
padding: 5px 10px;
border-left: 4px solid #f9cf63;
background-color: #ffffc0;
border-color: #f9cf63;
}
}
|