From 877733037d649408469970aad43b6ba9a17f8769 Mon Sep 17 00:00:00 2001 From: Pushkar Talwalkar Date: Fri, 29 Mar 2019 23:36:19 +0530 Subject: [PATCH 1/3] Fixing responsive error in theory webpages. --- src/lab/css/psd2css.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lab/css/psd2css.css b/src/lab/css/psd2css.css index 591a885e..f7b05aca 100644 --- a/src/lab/css/psd2css.css +++ b/src/lab/css/psd2css.css @@ -27,7 +27,10 @@ body { // background-image:url("../images/bck.png"); background-repeat: repeat; } - +img{ + width:100%; + height:auto; +} .imageFull { position: absolute; left: 105px; From b3010047a131a20283c5cf99c0434794ced7bca1 Mon Sep 17 00:00:00 2001 From: Pushkar Talwalkar Date: Sat, 30 Mar 2019 00:27:42 +0530 Subject: [PATCH 2/3] Making pages responsive --- src/lab/css/psd2css.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lab/css/psd2css.css b/src/lab/css/psd2css.css index f7b05aca..747f02bd 100644 --- a/src/lab/css/psd2css.css +++ b/src/lab/css/psd2css.css @@ -31,6 +31,10 @@ img{ width:100%; height:auto; } +.experiment{ + width:100%; + height:auto; +} .imageFull { position: absolute; left: 105px; From f44e02b4a9fda5fa74443fbbbee1947b68933456 Mon Sep 17 00:00:00 2001 From: Pushkar Talwalkar Date: Sat, 30 Mar 2019 04:21:45 +0530 Subject: [PATCH 3/3] Making tables responsive --- src/lab/css/psd2css.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lab/css/psd2css.css b/src/lab/css/psd2css.css index 747f02bd..48071d7d 100644 --- a/src/lab/css/psd2css.css +++ b/src/lab/css/psd2css.css @@ -31,6 +31,10 @@ img{ width:100%; height:auto; } +table{ + width:100%; + overflow-x:auto; +} .experiment{ width:100%; height:auto;