Last active
April 22, 2025 04:29
-
Star
(2,812)
You must be signed in to star a gist -
Fork
(1,111)
You must be signed in to fork a gist
Revisions
-
gokulkrishh revised this gist
Oct 28, 2020 . 1 changed file with 6 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ @media (min-width: 1281px) { /* CSS */ } @@ -17,7 +17,7 @@ @media (min-width: 1025px) and (max-width: 1280px) { /* CSS */ } @@ -28,7 +28,7 @@ @media (min-width: 768px) and (max-width: 1024px) { /* CSS */ } @@ -39,7 +39,7 @@ @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) { /* CSS */ } @@ -50,7 +50,7 @@ @media (min-width: 481px) and (max-width: 767px) { /* CSS */ } @@ -61,6 +61,6 @@ @media (min-width: 320px) and (max-width: 480px) { /* CSS */ } -
gokulkrishh revised this gist
Oct 28, 2015 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ /* ##Device = Laptops, Desktops ##Screen = B/w 1025px to 1280px */ @media (min-width: 1025px) and (max-width: 1280px) { @@ -23,7 +23,7 @@ /* ##Device = Tablets, Ipads (portrait) ##Screen = B/w 768px to 1024px */ @media (min-width: 768px) and (max-width: 1024px) { @@ -34,7 +34,7 @@ /* ##Device = Tablets, Ipads (landscape) ##Screen = B/w 768px to 1024px */ @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) { @@ -44,7 +44,7 @@ } /* ##Device = Low Resolution Tablets, Mobiles (Landscape) ##Screen = B/w 481px to 767px */ @@ -55,7 +55,7 @@ } /* ##Device = Most of the Smartphones Mobiles (Portrait) ##Screen = B/w 320px to 479px */ -
gokulkrishh revised this gist
Oct 28, 2015 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,6 @@ } /* ##Device = Laptops, Desktops ##Screen = B/w 1024px to 1280px -
gokulkrishh revised this gist
Oct 28, 2015 . 1 changed file with 14 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,18 +16,29 @@ ##Screen = B/w 1024px to 1280px */ @media (min-width: 1025px) and (max-width: 1280px) { //CSS } /* ##Device = Tablets, Ipads (portrait) ##Screen = B/w 768px to 1023px */ @media (min-width: 768px) and (max-width: 1024px) { //CSS } /* ##Device = Tablets, Ipads (landscape) ##Screen = B/w 768px to 1023px */ @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) { //CSS -
gokulkrishh created this gist
Oct 28, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,56 @@ /* ##Device = Desktops ##Screen = 1281px to higher resolution desktops */ @media (min-width: 1281px) { //CSS } /* ##Device = Laptops, Desktops ##Screen = B/w 1024px to 1280px */ @media (min-width: 1024px) and (max-width: 1280px) { //CSS } /* ##Device = Laptops, Tablets ##Screen = B/w 768px to 1023px */ @media (min-width: 768px) and (max-width: 1023px) { //CSS } /* ##Device = Tablets, Mobiles (Landscape) ##Screen = B/w 481px to 767px */ @media (min-width: 481px) and (max-width: 767px) { //CSS } /* ##Device = Most of Mobiles (Portrait) ##Screen = B/w 320px to 479px */ @media (min-width: 320px) and (max-width: 480px) { //CSS }