]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/sass/application.scss
25d79a0cb799ecdba2bc2ff650eee36d64156e3f
[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 .glyphicon-black {
17 color: black;
18 }
19
20 .header {
21 height: $header-height;
22
23 .search-col {
24 height: 100%;
25 margin-left: -15px;
26 padding: 0;
27 }
28 }
29
30 .main-col {
31 padding: 0;
32
33 .main-row {
34 padding: 15px 30px;
35
36 @media screen and (min-width: 1400px) {
37 padding: 15px 40px;
38 }
39
40 @media screen and (min-width: 1600px) {
41 padding: 15px 50px;
42 }
43
44 @media screen and (min-width: 1800px) {
45 padding: 15px 60px;
46 }
47 }
48 }
49
50 .title-menu-left {
51 height: calc(100vh - #{$header-height});
52 padding-right: 0;
53
54 .title-menu-left-block {
55 margin-left: -15px;
56
57 &.menu {
58 height: 100%;
59 }
60 }
61
62 #peertube-title {
63 background-color: #fff;
64 border-right: 2px solid $header-border-color;
65 font-size: 25px;
66 line-height: $header-height;
67 text-align: center;
68 margin-top: 0;
69 margin-bottom: 0;
70
71 a {
72 color: inherit !important;
73
74 &:hover {
75 color: inherit !important;
76 text-decoration: none !important;
77 }
78 }
79 }
80 }
81
82 /* some fixes for ng2-smart-table */
83 ng2-smart-table {
84 thead tr {
85 border-top: 1px solid rgb(233, 235, 236)
86 }
87
88 td, th {
89 padding: 8px !important;
90 color: #333333 !important;
91 font-size: 14px !important;
92 }
93
94 .ng2-smart-pagination-nav .page-link {
95 font-size: 11px !important;
96 }
97
98 .glyphicon {
99 font-family: 'Glyphicons Halflings' !important;
100 }
101 }
102
103 footer {
104 border-top: 1px solid rgba(0, 0, 0, 0.2);
105 padding-top: 10px;
106 text-align: center;
107 font-size: small;
108 margin-top: 30px;
109 }