summaryrefslogtreecommitdiff
path: root/assets/css/src/responsive.css
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-08-06 22:19:36 -0400
committerFrederic Guillot <fred@kanboard.net>2016-08-06 22:19:36 -0400
commit1dc947eac4c67770deb1ea04b2e7a63ceb6241a7 (patch)
tree906d05de69df87a88d3205e6f9a5d5cbd0b7fbc9 /assets/css/src/responsive.css
parent411a66c8cb58c73ef493ff030a4659f6ea0c51a6 (diff)
Convert vanilla CSS to SASS
Diffstat (limited to 'assets/css/src/responsive.css')
-rw-r--r--assets/css/src/responsive.css58
1 files changed, 0 insertions, 58 deletions
diff --git a/assets/css/src/responsive.css b/assets/css/src/responsive.css
deleted file mode 100644
index c94be166..00000000
--- a/assets/css/src/responsive.css
+++ /dev/null
@@ -1,58 +0,0 @@
-@media only screen and (max-width: 1024px) {
-
- body {
- font-size: 0.85em;
- }
-
- .form-tab {
- max-width: 404px;
- }
-
- .form-inline-group input[type="submit"],
- .form-inline-group label {
- display: block;
- }
-
- .form-inline-group input[type="submit"] {
- margin-top: 20px;
- }
-
- td > input[type="text"] {
- max-width: 150px;
- }
-
- .page-header .form-input-large {
- width: 300px;
- }
-}
-
-@media only screen and (max-width: 1024px) and (orientation: landscape) {
-
- header {
- padding-bottom: 4px;
- }
-
- div.chosen-container {
- font-size: 0.9em;
- }
-
- input[type="number"],
- input[type="date"],
- input[type="email"],
- input[type="password"],
- input[type="text"] {
- height: 18px;
- }
-
- .page-header .form-input-large {
- width: 300px;
- }
-}
-
-@media only screen and (max-width: 640px) {
-
- .hide-mobile {
- display: none;
- }
-}
-