1
0
Fork 0

Improve style of the torrent informations

This commit is contained in:
Chocobozzz 2016-04-29 14:34:51 +02:00
parent da932efc81
commit 9ced64e08f
3 changed files with 15 additions and 6 deletions

View File

@ -5,8 +5,7 @@ header div {
} }
menu { menu {
min-height: 300px; min-height: 600px;
height: 100%;
margin-right: 20px; margin-right: 20px;
border-right: 1px solid rgba(0, 0, 0, 0.2); border-right: 1px solid rgba(0, 0, 0, 0.2);

View File

@ -7,7 +7,7 @@
</div> </div>
<div id="torrent-info"> <div id="torrent-info">
<div>Download: {{ downloadSpeed | bytes }}/s</div> <div id="torrent-info-download">Download: {{ downloadSpeed | bytes }}/s</div>
<div>Upload: {{ uploadSpeed | bytes }}/s</div> <div id="torrent-info-upload">Upload: {{ uploadSpeed | bytes }}/s</div>
<div>Number of peers: {{ numPeers }}</div> <div id="torrent-info-peers">Number of peers: {{ numPeers }}</div>
<div> <div>

View File

@ -1,5 +1,5 @@
.embed-responsive { .embed-responsive {
height: 100%; height: 500px;
} }
#video-loading { #video-loading {
@ -28,3 +28,13 @@
from { -moz-transform: rotate(0deg);} from { -moz-transform: rotate(0deg);}
to { -moz-transform: rotate(360deg);} to { -moz-transform: rotate(360deg);}
} }
#torrent-info {
font-size: 10px;
div {
display: inline-block;
width: 33%;
text-align: center;
}
}