127 lines
1.5 KiB
CSS
127 lines
1.5 KiB
CSS
|
body {
|
||
|
background: #000;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
#additionalFeatures {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#wrapper {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
#videoWrapper {
|
||
|
float: left;
|
||
|
width: 400px;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
#selectFileDiv {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#helpWrapper {
|
||
|
-moz-border-radius: 8px;
|
||
|
font-size: 13px;
|
||
|
color: #000;
|
||
|
border: 2px solid #999;
|
||
|
background: #ccc;
|
||
|
padding: 4px;
|
||
|
margin-top: 8px;
|
||
|
}
|
||
|
|
||
|
#video {
|
||
|
height: 300px;
|
||
|
width: 400px;
|
||
|
}
|
||
|
|
||
|
#txtWrapper {
|
||
|
width: 50%;
|
||
|
margin-left: 20px;
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
#buttonsWrapper {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#eventMetadata {
|
||
|
display: none;
|
||
|
margin-left: 20px;
|
||
|
float: left;
|
||
|
width: 50%;
|
||
|
}
|
||
|
|
||
|
input.eventMeta, textarea.eventMeta {
|
||
|
padding: 5px;
|
||
|
margin: 3px;
|
||
|
width: 250px;
|
||
|
}
|
||
|
|
||
|
#seekTime {
|
||
|
width: 20px;
|
||
|
}
|
||
|
|
||
|
#dateYear {
|
||
|
width: 30px;
|
||
|
}
|
||
|
|
||
|
#dateMonth {
|
||
|
width: 25px;
|
||
|
}
|
||
|
|
||
|
#dateDay {
|
||
|
width: 25px;
|
||
|
}
|
||
|
|
||
|
#description {
|
||
|
width: 80%;
|
||
|
height: 100px;
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
padding: 8px;
|
||
|
margin-left: 10px;
|
||
|
cursor: pointer;
|
||
|
font-size: 15px;
|
||
|
background: #ccc;
|
||
|
-moz-border-radius: 5px;
|
||
|
border: 2px solid #000;
|
||
|
color: #f33;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
#txt {
|
||
|
height: 500px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
#seekBar {
|
||
|
height: 16px;
|
||
|
width: 320px;
|
||
|
margin-left: 40px;
|
||
|
background: #666;
|
||
|
opacity: 0.7;
|
||
|
z-index: 100;
|
||
|
}
|
||
|
|
||
|
#seekPointer {
|
||
|
height: 12px;
|
||
|
width: 10px;
|
||
|
position: relative;
|
||
|
margin-top: 2px;
|
||
|
margin-bottom: 2px;
|
||
|
-moz-border-radius: 10px;
|
||
|
background: #f00;
|
||
|
}
|
||
|
|
||
|
#timeCode {
|
||
|
color: #f00;
|
||
|
font-size: 12px;
|
||
|
font-weight: bold;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|