Skip to content

Commit 7f2f0b1

Browse files
author
dularion
committed
compiled scss to css
1 parent e78dfe8 commit 7f2f0b1

File tree

1 file changed

+138
-71
lines changed

1 file changed

+138
-71
lines changed

grails-app/assets/stylesheets/style.css

+138-71
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,30 @@ label {
212212
color: white;
213213
outline: none; }
214214

215+
.btn-dropzone {
216+
background: none;
217+
border: 2px dashed gray;
218+
position: relative; }
219+
.btn-dropzone:hover, .btn-dropzone:focus, .btn-dropzone:focus:active, .btn-dropzone:active {
220+
background: #2d3133; }
221+
.btn-dropzone.dragover-upload {
222+
border-style: solid; }
223+
.btn-dropzone.dragover-upload:before {
224+
content: "Drop File here";
225+
position: absolute;
226+
top: -2px;
227+
left: -2px;
228+
right: -2px;
229+
bottom: -2px;
230+
z-index: 9;
231+
background-color: #439ec1;
232+
border: 2px dashed #b0ddef;
233+
text-align: center;
234+
font-weight: 500;
235+
line-height: 56px;
236+
font-size: 28px;
237+
border-radius: 6px; }
238+
215239
.color-success {
216240
color: #07c594; }
217241

@@ -395,7 +419,10 @@ hr {
395419
opacity: 0.7; }
396420
.media-progress-wrapper .progress-info {
397421
font-weight: bold;
398-
line-height: 1.2em; }
422+
line-height: 1.2em;
423+
white-space: nowrap;
424+
overflow: hidden;
425+
text-overflow: ellipsis; }
399426
.media-progress-wrapper .media-progress {
400427
margin-top: 5px;
401428
height: 3px;
@@ -632,6 +659,9 @@ hr {
632659
border: 1px solid rgba(255, 255, 255, 0.17);
633660
background-color: rgba(0, 0, 0, 0.08); }
634661

662+
.admin-movie-item {
663+
min-height: 260px; }
664+
635665
.spinner {
636666
width: 38px;
637667
text-align: center;
@@ -682,6 +712,7 @@ hr {
682712
-webkit-transform: scale(1);
683713
transform: scale(1); } }
684714

715+
.video-wrapper-inner,
685716
.player-wrapper {
686717
display: -webkit-box;
687718
display: -moz-box;
@@ -698,76 +729,93 @@ hr {
698729
left: 0;
699730
right: 0;
700731
bottom: 0; }
701-
.player-wrapper video {
702-
width: 100%;
703-
max-height: 100%; }
704-
.player-wrapper .overlay {
705-
-moz-transition: opacity .5s;
706-
-webkit-transition: opacity .5s;
707-
-o-transition: opacity .5s;
708-
-ms-transition: opacity .5s;
709-
transition: opacity .5s;
710-
position: absolute;
711-
top: 0;
712-
left: 0;
713-
right: 0;
714-
bottom: 0;
715-
background: linear-gradient(rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.3) 100%);
716-
z-index: 9;
717-
opacity: 0;
718-
-moz-transition: opacity 0.3s;
719-
-webkit-transition: opacity 0.3s;
720-
-o-transition: opacity 0.3s;
721-
-ms-transition: opacity 0.3s;
722-
transition: opacity 0.3s; }
723-
.player-wrapper .overlay.visible {
724-
opacity: 1; }
725-
.player-wrapper .player-back {
726-
position: absolute;
727-
top: 20px;
728-
left: 20px;
729-
box-shadow: 0 0 0 2px white;
730-
border-radius: 100%;
731-
width: 1.5em;
732-
line-height: 1.5em;
733-
text-align: center;
734-
font-size: 26px;
735-
z-index: 10;
736-
opacity: 0;
737-
-moz-transition: opacity 0.3s;
738-
-webkit-transition: opacity 0.3s;
739-
-o-transition: opacity 0.3s;
740-
-ms-transition: opacity 0.3s;
741-
transition: opacity 0.3s; }
742-
.player-wrapper .player-back.visible {
743-
opacity: 1; }
744-
.player-wrapper .video-info {
745-
position: absolute;
746-
max-width: 600px;
747-
top: 20%;
748-
left: 10%;
749-
right: 100px; }
750-
.player-wrapper .video-info p {
751-
color: #999;
752-
margin: 0; }
753-
.player-wrapper .video-info h1 {
754-
margin: 0;
755-
margin-bottom: 10px; }
756-
.player-wrapper .video-info h3 {
757-
margin: 0;
758-
font-size: 20px;
759-
margin-bottom: 10px;
760-
font-weight: 300; }
761-
.player-wrapper .spinner {
762-
position: absolute;
763-
top: 50%;
764-
left: 50%;
765-
width: auto; }
766-
.player-wrapper .spinner > div {
767-
background: #b0ddef;
768-
width: 20px;
769-
height: 20px;
770-
margin-right: 12px; }
732+
733+
.player-wrapper video {
734+
width: 100%;
735+
max-height: 100%; }
736+
.player-wrapper .overlay {
737+
-moz-transition: opacity .5s;
738+
-webkit-transition: opacity .5s;
739+
-o-transition: opacity .5s;
740+
-ms-transition: opacity .5s;
741+
transition: opacity .5s;
742+
position: absolute;
743+
top: 0;
744+
left: 0;
745+
right: 0;
746+
bottom: 0;
747+
background: linear-gradient(rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.3) 100%);
748+
z-index: -999;
749+
opacity: 0;
750+
-moz-transition: opacity 0.3s;
751+
-webkit-transition: opacity 0.3s;
752+
-o-transition: opacity 0.3s;
753+
-ms-transition: opacity 0.3s;
754+
transition: opacity 0.3s; }
755+
.player-wrapper .overlay.visible {
756+
opacity: 1;
757+
z-index: 10; }
758+
.player-wrapper .play-button {
759+
position: absolute;
760+
top: 50%;
761+
left: 50%;
762+
font-size: 82px;
763+
margin: -0.75em;
764+
line-height: 1.5em;
765+
width: 1.5em;
766+
padding-left: 0.1em;
767+
height: 1.5em;
768+
border-radius: 100%;
769+
border: 1px solid white;
770+
text-align: center;
771+
background-color: rgba(0, 0, 0, 0.33);
772+
z-index: 9; }
773+
.player-wrapper .player-back {
774+
position: absolute;
775+
top: 20px;
776+
left: 20px;
777+
box-shadow: 0 0 0 2px white;
778+
border-radius: 100%;
779+
width: 1.5em;
780+
line-height: 1.5em;
781+
text-align: center;
782+
font-size: 26px;
783+
z-index: 10;
784+
opacity: 0;
785+
-moz-transition: opacity 0.3s;
786+
-webkit-transition: opacity 0.3s;
787+
-o-transition: opacity 0.3s;
788+
-ms-transition: opacity 0.3s;
789+
transition: opacity 0.3s; }
790+
.player-wrapper .player-back.visible {
791+
opacity: 1; }
792+
.player-wrapper .video-info {
793+
position: absolute;
794+
max-width: 600px;
795+
top: 20%;
796+
left: 10%;
797+
right: 100px; }
798+
.player-wrapper .video-info p {
799+
color: #999;
800+
margin: 0; }
801+
.player-wrapper .video-info h1 {
802+
margin: 0;
803+
margin-bottom: 10px; }
804+
.player-wrapper .video-info h3 {
805+
margin: 0;
806+
font-size: 20px;
807+
margin-bottom: 10px;
808+
font-weight: 300; }
809+
.player-wrapper .spinner {
810+
position: absolute;
811+
top: 50%;
812+
left: 50%;
813+
width: auto; }
814+
.player-wrapper .spinner > div {
815+
background: #b0ddef;
816+
width: 20px;
817+
height: 20px;
818+
margin-right: 12px; }
771819

772820
.player-wrapper button.button {
773821
padding: .5em 2em;
@@ -916,6 +964,8 @@ hr {
916964
background: linear-gradient(white, #858585);
917965
-webkit-background-clip: text;
918966
color: transparent; }
967+
.player-wrapper .player-control-bar .player-control-button.inactive {
968+
opacity: 0.3; }
919969
.player-wrapper .player-control-bar.player-control-divider {
920970
-webkit-order: 5;
921971
-ms-flex-order: 5;
@@ -4363,6 +4413,23 @@ body.mdx-active #mdx-control-view {
43634413
margin: 0 auto;
43644414
vertical-align: middle; }
43654415

4416+
::cue {
4417+
color: white;
4418+
font-weight: normal;
4419+
font-size: 30px;
4420+
line-height: 1.2em; }
4421+
4422+
@media (max-width: 680px) {
4423+
.player-wrapper .player-status {
4424+
line-height: 5.5em; }
4425+
.player-wrapper .player-control-bar {
4426+
height: 5.5em; }
4427+
.player-wrapper .player-controls-wrapper {
4428+
bottom: 2em;
4429+
left: 5%;
4430+
width: 90%; }
4431+
.player-wrapper .player-controls-wrapper > section {
4432+
margin-top: 3.8em; } }
43664433
.invitation-wrapper {
43674434
max-width: 600px;
43684435
margin: 70px auto;

0 commit comments

Comments
 (0)