]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/application.scss
Client: check user is logged in for some pages
[github/Chocobozzz/PeerTube.git] / client / src / sass / application.scss
CommitLineData
d592e0a9
C
1@import '~primeng/resources/themes/bootstrap/theme.css';
2@import '~primeng/resources/primeng.css';
3@import '~video.js/dist/video-js.css';
e14852b4 4@import './video-js-custom.scss';
e31f6ad6 5
383bfc83
C
6[hidden] {
7 display: none !important;
8}
a64668c0 9
383bfc83
C
10input.readonly {
11 /* Force blank on readonly inputs */
12 background-color: #fff !important;
0ac5edd9 13}
14
383bfc83
C
15.form-control, .btn {
16 border-radius: 0;
17}
602eb142 18
09223546
C
19.dropdown-menu {
20 border-radius: 0;
21}
22
383bfc83
C
23.glyphicon-black {
24 color: black;
25}
26
383bfc83 27.main-col {
602eb142 28
897ec54d 29 .content-padding {
383bfc83
C
30 padding: 15px 30px;
31
3eeeb87f
C
32 @media screen and (max-width: 800px) {
33 padding: 15px 10px;
34 }
35
383bfc83
C
36 @media screen and (min-width: 1400px) {
37 padding: 15px 40px;
602eb142
C
38 }
39
383bfc83
C
40 @media screen and (min-width: 1600px) {
41 padding: 15px 50px;
42 }
43
44 @media screen and (min-width: 1800px) {
45 padding: 15px 60px;
602eb142
C
46 }
47 }
383bfc83 48}
602eb142 49
315cc0cc
C
50// Thanks https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d
51.glyphicon-refresh-animate {
52 -animation: spin .7s infinite linear;
53 -ms-animation: spin .7s infinite linear;
54 -webkit-animation: spinw .7s infinite linear;
55 -moz-animation: spinm .7s infinite linear;
56}
57
58@keyframes spin {
59 from { transform: scale(1) rotate(0deg);}
60 to { transform: scale(1) rotate(360deg);}
61}
62
63@-webkit-keyframes spinw {
64 from { -webkit-transform: rotate(0deg);}
65 to { -webkit-transform: rotate(360deg);}
66}
67
68@-moz-keyframes spinm {
69 from { -moz-transform: rotate(0deg);}
70 to { -moz-transform: rotate(360deg);}
71}
72
d592e0a9
C
73/* ngprime data table customizations */
74p-datatable {
75 .action-cell {
76 text-align: center;
28798b5d 77
d592e0a9
C
78 .glyphicon {
79 cursor: pointer;
80 }
ad42bea3 81 }
21496304 82}