Improve style of the torrent informations
This commit is contained in:
parent
da932efc81
commit
9ced64e08f
3 changed files with 15 additions and 6 deletions
|
@ -5,8 +5,7 @@ header div {
|
|||
}
|
||||
|
||||
menu {
|
||||
min-height: 300px;
|
||||
height: 100%;
|
||||
min-height: 600px;
|
||||
margin-right: 20px;
|
||||
border-right: 1px solid rgba(0, 0, 0, 0.2);
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
</div>
|
||||
|
||||
<div id="torrent-info">
|
||||
<div>Download: {{ downloadSpeed | bytes }}/s</div>
|
||||
<div>Upload: {{ uploadSpeed | bytes }}/s</div>
|
||||
<div>Number of peers: {{ numPeers }}</div>
|
||||
<div id="torrent-info-download">Download: {{ downloadSpeed | bytes }}/s</div>
|
||||
<div id="torrent-info-upload">Upload: {{ uploadSpeed | bytes }}/s</div>
|
||||
<div id="torrent-info-peers">Number of peers: {{ numPeers }}</div>
|
||||
<div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.embed-responsive {
|
||||
height: 100%;
|
||||
height: 500px;
|
||||
}
|
||||
|
||||
#video-loading {
|
||||
|
@ -28,3 +28,13 @@
|
|||
from { -moz-transform: rotate(0deg);}
|
||||
to { -moz-transform: rotate(360deg);}
|
||||
}
|
||||
|
||||
#torrent-info {
|
||||
font-size: 10px;
|
||||
|
||||
div {
|
||||
display: inline-block;
|
||||
width: 33%;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue