mirror of https://github.com/bra1n/townsquare.git
better (custom) reminder text rendering
This commit is contained in:
parent
f10ff968a6
commit
ede5d353f4
|
@ -690,6 +690,9 @@ li.move:not(.from) .player .overlay svg.move {
|
||||||
background: url("../assets/reminder.png") center center;
|
background: url("../assets/reminder.png") center center;
|
||||||
background-size: 100%;
|
background-size: 100%;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
|
height: 0;
|
||||||
|
padding-bottom: 50%;
|
||||||
|
box-sizing: content-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -699,20 +702,20 @@ li.move:not(.from) .player .overlay svg.move {
|
||||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||||
transition: all 200ms;
|
transition: all 200ms;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
&:before {
|
|
||||||
content: " ";
|
|
||||||
display: block;
|
|
||||||
padding-top: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
line-height: 90%;
|
line-height: 90%;
|
||||||
color: black;
|
color: black;
|
||||||
font-size: 45%;
|
font-size: 50%;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: 50%;
|
margin-top: 50%;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: 15%;
|
||||||
|
text-shadow: 0 1px 1px #f6dfbd, 0 -1px 1px #f6dfbd, 1px 0 1px #f6dfbd,
|
||||||
|
-1px 0 1px #f6dfbd;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon,
|
.icon,
|
||||||
|
@ -732,6 +735,7 @@ li.move:not(.from) .player .overlay svg.move {
|
||||||
&:after {
|
&:after {
|
||||||
background-image: url("../assets/icons/x.png");
|
background-image: url("../assets/icons/x.png");
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
top: 5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.add {
|
&.add {
|
||||||
|
@ -741,7 +745,7 @@ li.move:not(.from) .player .overlay svg.move {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.icon {
|
.icon {
|
||||||
top: auto;
|
top: 5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -753,6 +757,12 @@ li.move:not(.from) .player .overlay svg.move {
|
||||||
font-size: 70%;
|
font-size: 70%;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
align-content: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: 50%;
|
||||||
|
top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue