Use css to truncate the page title

This commit is contained in:
Frederic Guillot
2015-06-15 20:30:30 -04:00
parent 100330c989
commit 57dd45839b
5 changed files with 13 additions and 5 deletions

View File

@@ -2,13 +2,16 @@
header {
margin-top: 10px;
padding-bottom: 15px;
clear: both;
border-bottom: 1px solid #dedede;
}
header h1 {
margin: 0;
padding: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 75%;
float: left;
}