diff --git a/static/css/main.css b/static/css/main.css index dce81113..1af980b2 100755 --- a/static/css/main.css +++ b/static/css/main.css @@ -4,7 +4,17 @@ body { font-family: "Inconsolata"; color: #333333; - background-color: #F5F5F5; } + background-color: #F5F5F5; + /* Make sure that text doesn't flow off the page */ + overflow-wrap: break-word; + word-wrap: break-word; + -ms-word-break: break-all; + word-break: break-word; + -ms-hyphens: auto; + -moz-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} a { color: #828282; @@ -478,4 +488,4 @@ strong { video { max-width: 100%; -} \ No newline at end of file +}