/* __PUBLISH__ */
/* bugs new etherpad is impossible to scroll and type spaces (sometimes!?) on all ios versions and iphones: trying to fix with css below */
#outerdocbody #editorcontainer{
-webkit-overflow-scrolling: touch;
}
/*
#outerdocbody iframe {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
padding: 12px;
}
*/
#innerdocbody {
background: pink;
width: 60%;
margin: 0 auto;
}
#innerdocbody > .ace-line{
- /*transform: rotate(2deg);*/
}
#innerdocbody span {
/*background: hotpink;*/
font-size: 1.5em;
background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
- background-size: 1800% 1800%;
animation: rainbow 18s ease infinite;
}
@keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
#sidediv {
/*background: #ffffa9;*/
background: blue;
}
.toolbar {
background-color: #ffffa9;
}
#chattext p {
background: whitesmoke;
color: black;
}