2020-12-29 06:33:37 +01:00
|
|
|
body {
|
2020-12-29 10:38:25 +01:00
|
|
|
height: 99.9%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-12-29 06:33:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
|
2020-12-30 20:46:25 +01:00
|
|
|
a:hover,a:focus {
|
2020-12-29 06:33:37 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2020-12-29 10:38:25 +01:00
|
|
|
#video {
|
|
|
|
width: 100%;
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-video-container {
|
2020-12-29 06:33:37 +01:00
|
|
|
display: none;
|
|
|
|
background: white;
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
border: black 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-container-bar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#close-and-reset-video-container {
|
|
|
|
margin-top: 0.25rem;
|
|
|
|
margin-right: 0.25rem;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
|
2020-12-30 20:46:25 +01:00
|
|
|
#close-and-reset-video-container:hover:#close-and-reset-video-container:focus {
|
2020-12-29 06:33:37 +01:00
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
}
|
2020-12-29 10:38:25 +01:00
|
|
|
|
|
|
|
#download-video-container {
|
|
|
|
margin: 10px;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2020-12-30 05:30:51 +01:00
|
|
|
#download-video-container a {
|
2020-12-29 10:38:25 +01:00
|
|
|
display: none;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2020-12-30 05:30:51 +01:00
|
|
|
width: 100%;
|
2020-12-29 10:38:25 +01:00
|
|
|
background: #0a0;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 30px;
|
|
|
|
color: white;
|
2020-12-30 05:30:51 +01:00
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#download-video-container a.active {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#download-video-container a embed {
|
|
|
|
height: 30px;
|
2020-12-29 10:38:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#video-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.application-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
background: #000;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
#download-form {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#download-form-button {
|
|
|
|
margin-top: 5px;
|
|
|
|
height: 50px;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
background: #fff;
|
|
|
|
color: black;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
2020-12-30 05:30:51 +01:00
|
|
|
|
|
|
|
#modal-loading {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
border: black 1px solid;
|
|
|
|
justify-content: right;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-loading.active {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-loading embed {
|
|
|
|
width: 10%;
|
|
|
|
}
|
2020-12-30 20:18:42 +01:00
|
|
|
|
|
|
|
#poping-notice {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
border: black 1px solid;
|
|
|
|
width: 91%;
|
|
|
|
background: white;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 15px;
|
|
|
|
max-height: 100%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
#poping-notice.active {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#poping-notice-container-bar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#close-poping-notice {
|
|
|
|
width: 150px;
|
|
|
|
height: 150px;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: #0f0;
|
|
|
|
color: black;
|
2020-12-30 20:46:25 +01:00
|
|
|
text-decoration: none;
|
2020-12-30 20:18:42 +01:00
|
|
|
}
|
|
|
|
|
2020-12-30 20:46:25 +01:00
|
|
|
#close-poping-notice:hover,#close-poping-notice:focus {
|
2020-12-30 20:18:42 +01:00
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2020-12-30 20:46:25 +01:00
|
|
|
@media (min-width: 668px) {
|
|
|
|
#poping-notice {
|
|
|
|
width: 629px;
|
|
|
|
}
|
2020-12-30 20:18:42 +01:00
|
|
|
}
|
2020-12-30 20:46:25 +01:00
|
|
|
|