feature(css) add media-query for .cmd-button

This commit is contained in:
coderaiser 2013-07-26 10:13:50 +00:00
parent 6b1b8e1ebf
commit 3a91dc42c0
2 changed files with 14 additions and 0 deletions

View file

@ -140,6 +140,8 @@ getJSONfromFileTable.
* feature(Events) dispatch: event -> event || eventName
* feature(css) add media-query for .cmd-button
2012.04.22, v0.2.0

View file

@ -344,6 +344,10 @@ a:hover, a:active {
width:100%;
font-size: 18px;
}
.cmd-button {
width: 20%;
}
}
@media only screen and (min-width: 601px) and (max-width: 785px){
.panel{
@ -352,6 +356,10 @@ a:hover, a:active {
#right{
display:none;
}
.cmd-button {
width: 15%;
}
}
@media only screen and (min-width:786px) and (max-width: 1155px){
@ -362,4 +370,8 @@ a:hover, a:active {
#right{
display:none;
}
.cmd-button {
width: 10%;
}
}