aboutsummaryrefslogtreecommitdiff
path: root/css/mobile.css
diff options
context:
space:
mode:
authorKumar Priyansh <[email protected]>2018-07-14 14:28:03 +0530
committerGitHub <[email protected]>2018-07-14 14:28:03 +0530
commit85652ff088105466ae72c507aece491f2b886550 (patch)
treee6a9982c3de35b0b75fd1ddafd7ecebbcd5f3846 /css/mobile.css
parent6f292218af71e36f3f1db7eba31d5771b4af0ecb (diff)
downloaddashboard-system-85652ff088105466ae72c507aece491f2b886550.tar.xz
dashboard-system-85652ff088105466ae72c507aece491f2b886550.zip
Add files via upload
Diffstat (limited to 'css/mobile.css')
-rw-r--r--css/mobile.css82
1 files changed, 82 insertions, 0 deletions
diff --git a/css/mobile.css b/css/mobile.css
new file mode 100644
index 0000000..30afa07
--- /dev/null
+++ b/css/mobile.css
@@ -0,0 +1,82 @@
+@media only screen and (max-width: 768px) {
+
+ .page-centered {
+ width: 90%;
+ height: 30%;
+ position: absolute;
+ top: 35%;
+ left: 50%;
+ -ms-transform: translateX(-50%) translateY(-50%);
+ -webkit-transform: translate(-50%,-50%);
+ transform: translate(-50%,-50%);
+ }
+ .sidebar {
+ position: fixed;
+ z-index: 1;
+ background-color: royalblue;
+ height: 100vh;
+ overflow-y: scroll;
+ display: none;
+ }
+ .menu {
+ display: block;
+ padding: 10px 20px;
+ background-color: royalblue;
+ color: white;
+ font-size: 1.5em;
+ }
+ #openChat {
+ float: right;
+ padding-top: 5px;
+ }
+ .display {
+ display: block;
+ }
+ .title {
+ width: 85%;
+ }
+ .report-header {
+ padding: 10px 20px;
+ font-size: 1em;
+ }
+ .dashboard {
+ padding-top: 80px;
+ }
+ .chat {
+ padding-top: 80px;
+ }
+ .image {
+ padding: 0px 5%;
+ width: 20%;
+ }
+ .message {
+ margin: 0px 2%;
+ width: 75%;
+ }
+ #showChat {
+ display: none;
+ }
+ #showCalc {
+ display: none;
+ }
+ #openCalc {
+ float: right;
+ position: relative;
+ top: 5px;
+ right: 20px;
+ display: block;
+ }
+ .reply {
+ width: 70%;
+ }
+ .mb-icon {
+ padding: 2% 4% 2% 0%;
+ cursor: pointer;
+ display: inline-block;
+}
+}
+@media only screen and (max-width: 320px) {
+ .reply {
+ width: 68%;
+ }
+} \ No newline at end of file