]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/application.scss
Client: avoid loading javascript ressource over the network
[github/Chocobozzz/PeerTube.git] / client / src / sass / application.scss
CommitLineData
c16ce1de 1@import '../../node_modules/video.js/dist/video-js.css';
e31f6ad6 2
0ac5edd9 3body {
4 padding: 20px;
a64668c0
C
5
6 @media screen and (max-width: 400px) {
7 padding: 3px;
8 }
0ac5edd9 9}
10
602eb142
C
11menu {
12 @media screen and (max-width: 600px) {
13 margin-right: 3px !important;
14 padding: 3px !important;
15 min-height: 400px !important;
16 }
17
18 min-height: 600px;
19 margin-right: 20px;
20 border-right: 1px solid rgba(0, 0, 0, 0.2);
21
22 .panel-block:not(:last-child) {
23 border-bottom: 1px solid rgba(0, 0, 0, 0.1);
24 }
25
26 .panel-button {
27 margin: 8px;
28 cursor: pointer;
29 transition: margin 0.2s;
30
31 &:hover {
32 margin-left: 15px;
33 }
34
35 a {
36 color: #333333;
37 }
38 }
39
40 .glyphicon {
41 margin: 5px;
42 }
43}
44
ad42bea3
C
45/* some fixes for ng2-smart-table */
46ng2-smart-table {
47 thead tr {
48 border-top: 1px solid rgb(233, 235, 236)
49 }
28798b5d 50
ad42bea3
C
51 td, th {
52 padding: 8px !important;
53 color: #333333 !important;
54 font-size: 14px !important;
28798b5d
C
55 }
56
57 .ng2-smart-pagination-nav .page-link {
58 font-size: 11px !important;
59 }
ad42bea3
C
60
61 .glyphicon {
62 font-family: 'Glyphicons Halflings' !important;
63 }
21496304
C
64}
65
9c89a45c
C
66[hidden] {
67 display: none !important;
68}
69
cf02fbfb
C
70input.readonly {
71 /* Force blank on readonly inputs */
72 background-color: #fff !important;
73}
602eb142 74
28798b5d
C
75.glyphicon-black {
76 color: black;
77}
78
0ac5edd9 79footer {
80 border-top: 1px solid rgba(0, 0, 0, 0.2);
81 padding-top: 10px;
82 text-align: center;
83 font-size: small;
763bed9b 84 margin-top: 30px;
a0382b70 85}