]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/application.scss
Client: add titles to menu blocks
[github/Chocobozzz/PeerTube.git] / client / src / sass / application.scss
CommitLineData
c16ce1de 1@import '../../node_modules/video.js/dist/video-js.css';
e31f6ad6 2
383bfc83
C
3[hidden] {
4 display: none !important;
5}
a64668c0 6
383bfc83
C
7input.readonly {
8 /* Force blank on readonly inputs */
9 background-color: #fff !important;
0ac5edd9 10}
11
383bfc83
C
12.form-control, .btn {
13 border-radius: 0;
14}
602eb142 15
09223546
C
16.dropdown-menu {
17 border-radius: 0;
18}
19
383bfc83
C
20.glyphicon-black {
21 color: black;
22}
23
24.header {
25 height: $header-height;
602eb142 26
383bfc83
C
27 .search-col {
28 height: 100%;
29 margin-left: -15px;
30 padding: 0;
602eb142 31 }
383bfc83 32}
602eb142 33
383bfc83
C
34.main-col {
35 padding: 0;
602eb142 36
383bfc83
C
37 .main-row {
38 padding: 15px 30px;
39
40 @media screen and (min-width: 1400px) {
41 padding: 15px 40px;
602eb142
C
42 }
43
383bfc83
C
44 @media screen and (min-width: 1600px) {
45 padding: 15px 50px;
46 }
47
48 @media screen and (min-width: 1800px) {
49 padding: 15px 60px;
602eb142
C
50 }
51 }
383bfc83 52}
602eb142 53
383bfc83
C
54.title-menu-left {
55 height: calc(100vh - #{$header-height});
56 padding-right: 0;
57
58 .title-menu-left-block {
59 margin-left: -15px;
60
61 &.menu {
62 height: 100%;
63 }
64 }
65
66 #peertube-title {
67 background-color: #fff;
09223546 68 border-right: 1px solid $header-border-color;
383bfc83
C
69 font-size: 25px;
70 line-height: $header-height;
71 text-align: center;
72 margin-top: 0;
73 margin-bottom: 0;
74
75 a {
76 color: inherit !important;
77
78 &:hover {
79 color: inherit !important;
80 text-decoration: none !important;
81 }
82 }
602eb142
C
83 }
84}
85
ad42bea3
C
86/* some fixes for ng2-smart-table */
87ng2-smart-table {
88 thead tr {
89 border-top: 1px solid rgb(233, 235, 236)
90 }
28798b5d 91
ad42bea3
C
92 td, th {
93 padding: 8px !important;
94 color: #333333 !important;
95 font-size: 14px !important;
28798b5d
C
96 }
97
98 .ng2-smart-pagination-nav .page-link {
99 font-size: 11px !important;
100 }
ad42bea3
C
101
102 .glyphicon {
103 font-family: 'Glyphicons Halflings' !important;
104 }
21496304
C
105}
106
0ac5edd9 107footer {
108 border-top: 1px solid rgba(0, 0, 0, 0.2);
109 padding-top: 10px;
110 text-align: center;
111 font-size: small;
763bed9b 112 margin-top: 30px;
a0382b70 113}