Client: try to be responsive
[oweals/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 (max-width: 800px) {
30       padding: 15px 10px;
31     }
32
33     @media screen and (min-width: 1400px) {
34       padding: 15px 40px;
35     }
36
37     @media screen and (min-width: 1600px) {
38       padding: 15px 50px;
39     }
40
41     @media screen and (min-width: 1800px) {
42       padding: 15px 60px;
43     }
44   }
45 }
46
47 /* some fixes for ng2-smart-table */
48 ng2-smart-table {
49   thead tr {
50     border-top: 1px solid rgb(233, 235, 236)
51   }
52
53   td, th {
54     padding: 8px !important;
55     color: #333333 !important;
56     font-size: 14px !important;
57   }
58
59   .ng2-smart-pagination-nav .page-link {
60     font-size: 11px !important;
61   }
62
63   .glyphicon {
64     font-family: 'Glyphicons Halflings' !important;
65   }
66 }