Added reactions on news items

This commit is contained in:
mrfry 2021-03-03 18:45:12 +01:00
parent 62b35eac68
commit 64697efc96
10 changed files with 5711 additions and 87 deletions

View file

@ -0,0 +1,28 @@
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
width: 280px;
height: 250px;
max-width: 280px;
max-height: 250px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 100%;
left: 0%;
margin-left: -60px;
transition: opacity 0.3s;
overflow-y: scroll;
}
.container {
}