]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/application.scss
Begin videos list new design
[github/Chocobozzz/PeerTube.git] / client / src / sass / application.scss
CommitLineData
b33f657c
C
1$FontPathSourceSansPro: "../fonts/source-sans-pro";
2@import '~source-sans-pro/source-sans-pro';
d592e0a9
C
3@import '~primeng/resources/themes/bootstrap/theme.css';
4@import '~primeng/resources/primeng.css';
5@import '~video.js/dist/video-js.css';
e14852b4 6@import './video-js-custom.scss';
e31f6ad6 7
383bfc83
C
8[hidden] {
9 display: none !important;
10}
a64668c0 11
b33f657c
C
12body {
13 font-family: 'Source Sans Pro';
14 font-weight: $font-regular;
15 color: #000;
16}
17
383bfc83
C
18input.readonly {
19 /* Force blank on readonly inputs */
20 background-color: #fff !important;
0ac5edd9 21}
22
383bfc83
C
23.form-control, .btn {
24 border-radius: 0;
25}
602eb142 26
09223546
C
27.dropdown-menu {
28 border-radius: 0;
29}
30
383bfc83
C
31.glyphicon-black {
32 color: black;
33}
34
383bfc83 35.main-col {
9bf9d2a5
C
36 padding: 30px;
37
38 .title-page {
39 font-size: 16px;
40 font-weight: $font-bold;
41 display: inline-block;
42 border-bottom: 2px solid $orange-color;
43 margin-bottom: 25px;
602eb142 44 }
383bfc83 45}
602eb142 46
a01f107b
C
47// On small screen, menu is absolute and displayed over the page
48@media screen and (max-width: 500px) {
49 .title-menu-left {
50 width: 120px;
51 position: absolute !important;
52 z-index: 10000;
53 }
54
55 .main-col {
56 width: 100% !important;
57 }
58
59 .fake-menu {
60 display: none;
61 }
62}
63
315cc0cc
C
64// Thanks https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d
65.glyphicon-refresh-animate {
66 -animation: spin .7s infinite linear;
67 -ms-animation: spin .7s infinite linear;
68 -webkit-animation: spinw .7s infinite linear;
69 -moz-animation: spinm .7s infinite linear;
70}
71
72@keyframes spin {
73 from { transform: scale(1) rotate(0deg);}
74 to { transform: scale(1) rotate(360deg);}
75}
76
77@-webkit-keyframes spinw {
78 from { -webkit-transform: rotate(0deg);}
79 to { -webkit-transform: rotate(360deg);}
80}
81
82@-moz-keyframes spinm {
83 from { -moz-transform: rotate(0deg);}
84 to { -moz-transform: rotate(360deg);}
85}
86
d592e0a9
C
87/* ngprime data table customizations */
88p-datatable {
89 .action-cell {
90 text-align: center;
28798b5d 91
d592e0a9
C
92 .glyphicon {
93 cursor: pointer;
94 }
ad42bea3 95 }
21496304 96}