2019-01-25 00:16:23 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
@import "/imports/ui/components/modal/simple/styles";
|
2019-03-13 05:56:03 +08:00
|
|
|
@import "/imports/ui/stylesheets/mixins/focus";
|
2019-01-25 00:16:23 +08:00
|
|
|
|
|
|
|
.header {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
line-height: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2019-04-24 03:59:10 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-01-25 00:16:23 +08:00
|
|
|
justify-content: center;
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videoOptions {
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlay {
|
|
|
|
@extend .overlay;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
@extend .modal;
|
|
|
|
padding: 1.5rem;
|
|
|
|
min-height: 20rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closeBtn {
|
|
|
|
position: relative;
|
|
|
|
background-color: var(--color-white);
|
|
|
|
|
|
|
|
i {
|
|
|
|
color: var(--color-gray-light);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover{
|
|
|
|
background-color: var(--color-gray-lighter);
|
|
|
|
i{
|
|
|
|
color: var(--color-gray);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.warning{
|
|
|
|
text-align: center;
|
|
|
|
font-weight: var(--headings-font-weight);
|
|
|
|
font-size: 5rem;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
.text{
|
|
|
|
margin: var(--line-height-computed);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
margin: var(--line-height-computed);
|
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-large);
|
|
|
|
}
|
|
|
|
|
2019-04-25 01:19:35 +08:00
|
|
|
.startBtn {
|
2019-04-24 03:59:10 +08:00
|
|
|
display: flex;
|
|
|
|
align-self: center;
|
2019-01-25 00:16:23 +08:00
|
|
|
&:focus {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
i{
|
|
|
|
color: #3c5764;
|
|
|
|
}
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
width: 40%;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 20px;
|
|
|
|
color: var(--color-white) !important;
|
|
|
|
background-color: var(--color-link) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
white-space: normal;
|
|
|
|
|
|
|
|
@include mq(var(--small-only)) {
|
|
|
|
font-size: 1rem;
|
|
|
|
padding: 0 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.videoUrl {
|
2019-03-13 05:56:03 +08:00
|
|
|
margin: 0 var(--border-size) 0 var(--border-size);
|
|
|
|
|
2019-01-25 00:16:23 +08:00
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
2019-03-13 05:56:03 +08:00
|
|
|
@include inputFocus(var(--color-blue-light));
|
2019-01-25 00:16:23 +08:00
|
|
|
display: block;
|
|
|
|
margin: 10px 0 10px 0;
|
|
|
|
padding: 0.4em;
|
2019-03-12 00:14:34 +08:00
|
|
|
color: var(--color-text);
|
2019-01-25 00:16:23 +08:00
|
|
|
line-height: 2rem;
|
|
|
|
width: 100%;
|
|
|
|
font-family: inherit;
|
|
|
|
font-weight: inherit;
|
2019-03-12 00:14:34 +08:00
|
|
|
border: 1px solid var(--color-gray-lighter);
|
|
|
|
border-radius: var(--border-radius);
|
2019-03-05 10:46:37 +08:00
|
|
|
|
2019-04-11 23:04:10 +08:00
|
|
|
:global(.animationsEnabled) & {
|
2019-03-05 10:46:37 +08:00
|
|
|
transition: box-shadow .2s;
|
|
|
|
}
|
2019-01-25 00:16:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.urlError {
|
|
|
|
color: red;
|
|
|
|
padding: 1em;
|
2019-03-05 10:46:37 +08:00
|
|
|
|
2019-04-11 23:04:10 +08:00
|
|
|
:global(.animationsEnabled) & {
|
2019-03-05 10:46:37 +08:00
|
|
|
transition: 1s;
|
|
|
|
}
|
2019-01-25 00:16:23 +08:00
|
|
|
}
|
|
|
|
|
2019-08-27 04:39:20 +08:00
|
|
|
.externalVideoNote {
|
2019-03-15 21:04:19 +08:00
|
|
|
color: var(--color-gray);
|
|
|
|
font-size: var(--font-size-small);
|
|
|
|
font-style: italic;
|
|
|
|
padding-top: var(--sm-padding-x);
|
|
|
|
}
|