Add the film out screen and begin styling.
This commit is contained in:
parent
39e6ab5247
commit
7c43f2de2c
|
@ -739,6 +739,21 @@ button:focus {
|
||||||
background: black;
|
background: black;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
#video_preview_wrap {
|
||||||
|
background: #000;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
#video_preview {
|
||||||
|
height: 400px;
|
||||||
|
min-height: 400px;
|
||||||
|
width: auto;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: block;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
#video_preview .on {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
#screens {
|
#screens {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
|
@ -345,8 +345,12 @@
|
||||||
<div id="video" class="screen">
|
<div id="video" class="screen">
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<input id="video_file" type="text" onclick="devices.digitalSelect();" readonly />
|
<div id="path_bar">
|
||||||
<img src="#" id="video_preview">
|
<input id="video_file" type="text" onclick="devices.digitalSelect();" readonly />
|
||||||
|
</div>
|
||||||
|
<div id="video_preview_wrap">
|
||||||
|
<img src="#" id="video_preview">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
@import "./scroll.less";
|
@import "./scroll.less";
|
||||||
@import "./settings.less";
|
@import "./settings.less";
|
||||||
@import "./mscript.less";
|
@import "./mscript.less";
|
||||||
|
@import "./video.less";
|
||||||
|
|
||||||
#screens{
|
#screens{
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
|
Loading…
Reference in New Issue