144 lines
No EOL
2.8 KiB
CSS
144 lines
No EOL
2.8 KiB
CSS
.nav {
|
|
position: absolute;
|
|
top: -130px;
|
|
right: 0;
|
|
}
|
|
|
|
.nav ul {
|
|
margin: 0;
|
|
list-style: none;
|
|
text-align: center;
|
|
}
|
|
|
|
.nav li {
|
|
display: inline-block;
|
|
height: 40px;
|
|
margin-left: 12px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.nav a {
|
|
display: block;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.nav a:hover {
|
|
border-bottom: 1px solid #DB7676;
|
|
}
|
|
|
|
.nav button {
|
|
height: 40px;
|
|
}
|
|
|
|
.nav button:hover {
|
|
border-bottom: 1px solid #DB7676;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* background image by Cole Bemis <https://feathericons.com> */
|
|
.nav .user {
|
|
padding-left: 20px;
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-user'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
background-position: center left;
|
|
}
|
|
|
|
/* background image by Cole Bemis <https://feathericons.com> */
|
|
.nav .logout {
|
|
padding-left: 20px;
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-log-out'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'%3E%3C/path%3E%3Cpolyline points='16 17 21 12 16 7'%3E%3C/polyline%3E%3Cline x1='21' y1='12' x2='9' y2='12'%3E%3C/line%3E%3C/svg%3E%0A");
|
|
background-repeat: no-repeat;
|
|
background-position: center left;
|
|
}
|
|
|
|
#dropArea {
|
|
border: 2px dashed #ccc;
|
|
border-radius: 20px;
|
|
width: 100%;
|
|
font-family: sans-serif;
|
|
padding: 50px 0px 50px 0px;
|
|
}
|
|
|
|
#dropArea.highlight {
|
|
border-color: purple;
|
|
}
|
|
|
|
.dragregion {
|
|
text-align: center;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
}
|
|
|
|
div.nonmedia {
|
|
height: 100px;
|
|
width: 100%;
|
|
}
|
|
|
|
div.nonmedia p {
|
|
color: #444;
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
line-height: 100px;
|
|
text-align: center;
|
|
}
|
|
|
|
label {
|
|
text-align: center;
|
|
}
|
|
|
|
.video {
|
|
position: relative;
|
|
}
|
|
|
|
.video .overlay {
|
|
position: absolute;
|
|
top: 0%;
|
|
left: 70%;
|
|
transform: translateY(0%) translateX(70%);
|
|
z-index: 1;
|
|
border-radius: 25px;
|
|
border: 2px solid #73AD21;
|
|
padding: 5px;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.video .overlay a {
|
|
color: #73AD21;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.modal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
z-index: 9999;
|
|
}
|
|
|
|
.modal img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.modal video {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
} |