diff options
Diffstat (limited to 'assets/css/responsive.css')
-rw-r--r-- | assets/css/responsive.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/assets/css/responsive.css b/assets/css/responsive.css new file mode 100644 index 00000000..c8e1208f --- /dev/null +++ b/assets/css/responsive.css @@ -0,0 +1,68 @@ +/* responsive design */ +@media only screen and (min-width : 768px) and (max-width : 1024px) { + + .hide-tablet { + display: none; + } + + body { + font-size: 0.9em; + } + + .project-menu { + font-size: 0.8em; + } + + .task-board-title { + font-size: 1.5em; + } +} + +@media only screen and (max-width : 768px) { + + .hide-tablet { + display: none; + } + + body { + font-size: 0.85em; + } + + .logo, + .project-menu { + display: none; + } + + nav li:first-child { + padding-left: 0; + } + + .username { + display: block; + text-align: right; + } + + .user-show-sidebar, + .project-show-sidebar, + .task-show-sidebar { + width: 200px; + } + + .user-show-main, + .project-show-main, + .task-show-main { + margin-left: 230px; + } + + table input[type="text"] { + width: 150px; + } + + .task-score { + display: none; + } + + .task-board-title { + font-size: 1.5em; + } +}
\ No newline at end of file |