Skip to content

Instantly share code, notes, and snippets.

View mohdrishin's full-sized avatar
:atom:
Focusing

Mohammed Rishin mohdrishin

:atom:
Focusing
View GitHub Profile
@mohdrishin
mohdrishin / Contributing.md
Created August 1, 2021 12:41 — forked from MarcDiethelm/Contributing.md
How to contribute to a project on Github

This text now lives at https://github.com/MarcDiethelm/contributing/blob/master/README.md. I turned it into a Github repo so you can, you know, contribute to it by making pull requests.


Contributing

If you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.

@mohdrishin
mohdrishin / css-media-queries-cheat-sheet.css
Created June 13, 2021 08:09 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@mohdrishin
mohdrishin / media-query.css
Created June 12, 2021 02:17 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
@mohdrishin
mohdrishin / dropdown menu.css
Created May 23, 2021 10:39
Remove Dropdown menu downarrow icon
/*for doropdown menu
<details class="details-pricing">
<summary>Pricing</summary>
</details>
*/
.details-pricing
{
list-style: none;
}