Add strikethrough styling for complete milestones
This commit is contained in:
parent
4b22fa37ae
commit
038c85b3ce
@ -14,6 +14,29 @@
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user