diff --git a/client/static/index.html b/client/static/index.html index 02fbcc5..af500d1 100644 --- a/client/static/index.html +++ b/client/static/index.html @@ -74,6 +74,38 @@ margin-bottom: 1px; } .status-container { height: 50px; } + +.dont-break-out { + + /* These are technically the same, but use both */ + overflow-wrap: break-word; + word-wrap: break-word; + + -ms-word-break: break-all; + /* This is the dangerous one in WebKit, as it breaks things wherever */ + word-break: break-all; + /* Instead use this non-standard one: */ + word-break: break-word; + + /* Adds a hyphen where the word breaks, if supported (No Blink) */ + -ms-hyphens: auto; + -moz-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +.overlay { + height: 0; + width: 100%; + position: fixed; + z-index: 1000; + left: 0; + top: 0; + background-color: rgb(0,0,0); + background-color: rgba(0,0,0, 0.5); + overflow-x: hidden; + transition: 0.5s; +} @@ -88,13 +120,16 @@ height: 50px;
+