pad.libre-service.eu-etherpad/src/static/css/timeslider.css

123 lines
1.9 KiB
CSS
Raw Normal View History

#editbar {
padding: 10px;
}
.timeslider-bar {
display: flex;
flex-direction: row;
}
/* TITLE */
.timeslider-title-container {
flex: 1 auto;
2020-03-31 19:27:04 +02:00
}
.timeslider-subtitle {
margin-top: 10px;
2012-03-25 00:29:03 +01:00
}
/* RIGHT TOOLBAR (export, settings, back to pad) */
.editbarright ul li {
margin-top: 0;
}
.editbarright ul li a {
background-color: transparent;
border: none;
margin-left: 10px
}
.editbarright .buttontext {
padding: 2px 5px;
}
/* SLIDER */
#timeslider-wrapper {
display: flex;
flex-direction: row;
height: 40px;
}
#timeslider-slider {
flex: 1 auto;
display: flex;
flex-direction: column;
justify-content: center;
cursor: pointer;
position: relative;
}
#timeslider-slider #timer {
position: absolute;
top: 0;
right: 0;
}
#timeslider-slider #ui-slider-bar {
height: 10px;
width: 100%;
background-color: #c2c2c2;
position: relative;
}
#timeslider-slider #ui-slider-handle {
height: 40px;
width: 10px;
z-index: 2;
position: absolute;
background-color: #3e3e3e;
cursor: move;
}
#timeslider-slider .star {
cursor: pointer;
position: absolute;
top: -4px
}
#timeslider-slider .star:before{
font-family: fontawesome-etherpad;
color: #da9700;
content: "\e836";
vertical-align:middle;
font-size:16px;
margin-left: -1px;
}
/* BUTTONS TO MOVE SLIDER (Play/Pause, Next, Prev)*/
#slider-btn-container {
margin-left: 15px;
display: flex;
align-items: center;
2012-03-24 20:35:45 +01:00
}
#slider-btn-container button {
border: 1px solid #666;
border-radius: 50%;
width: 30px;
height: 30px;
margin-left: 5px;
2012-03-24 20:35:45 +01:00
}
#slider-btn-container #playpause_button_icon {
width: 40px;
height: 40px;
font-size: 22px;
padding-left: 2px;
2012-03-25 15:48:31 +02:00
}
#slider-btn-container #playpause_button_icon.pause:before {
content: "\e82e";
padding-left: 0;
padding-right: 2px;
2012-03-24 20:35:45 +01:00
}
/* PAD CONTENT */
2020-04-03 17:41:47 +02:00
#outerdocbody {
display: block;
}
#innerdocbody {
white-space: normal;
word-break: break-word;
}