]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/sass/application.scss
Client: add ability to hide left menu
[github/Chocobozzz/PeerTube.git] / client / src / sass / application.scss
1 @import '../../node_modules/video.js/dist/video-js.css';
2
3 [hidden] {
4 display: none !important;
5 }
6
7 input.readonly {
8 /* Force blank on readonly inputs */
9 background-color: #fff !important;
10 }
11
12 .form-control, .btn {
13 border-radius: 0;
14 }
15
16 .dropdown-menu {
17 border-radius: 0;
18 }
19
20 .glyphicon-black {
21 color: black;
22 }
23
24 .main-col {
25
26 .content-padding {
27 padding: 15px 30px;
28
29 @media screen and (min-width: 1400px) {
30 padding: 15px 40px;
31 }
32
33 @media screen and (min-width: 1600px) {
34 padding: 15px 50px;
35 }
36
37 @media screen and (min-width: 1800px) {
38 padding: 15px 60px;
39 }
40 }
41 }
42
43 /* some fixes for ng2-smart-table */
44 ng2-smart-table {
45 thead tr {
46 border-top: 1px solid rgb(233, 235, 236)
47 }
48
49 td, th {
50 padding: 8px !important;
51 color: #333333 !important;
52 font-size: 14px !important;
53 }
54
55 .ng2-smart-pagination-nav .page-link {
56 font-size: 11px !important;
57 }
58
59 .glyphicon {
60 font-family: 'Glyphicons Halflings' !important;
61 }
62 }