1
0
Fork 0

Decrease menu width from 200 to 150px

This commit is contained in:
Gregory Eremin 2015-03-16 15:47:53 +07:00
parent f8cfbbf9a9
commit cab51ea128
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
* { * {
box-sizing: border-box; box-sizing: border-box;
font-family: 'Open Sans', Helvetica, Arial, sans-serif; font-family: 'Open Sans', Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 20px;
} }
.app { .app {
@ -9,7 +11,7 @@
.content { .content {
float: left; float: left;
width: calc(100% - 240px); width: calc(100% - 190px);
margin-top: 20px; margin-top: 20px;
} }
.content .left, .content .right { .content .left, .content .right {

View File

@ -1,6 +1,6 @@
.menu { .menu {
float: left; float: left;
width: 200px; width: 150px;
margin: 20px; margin: 20px;
} }
.menu ul { .menu ul {
@ -32,7 +32,7 @@
color: #000; color: #000;
text-decoration: none; text-decoration: none;
width: auto; width: auto;
max-width: 200px; max-width: 150px;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;