An open API service indexing awesome lists of open source software.

https://github.com/muhammadaziz01-dev/pizzabek


https://github.com/muhammadaziz01-dev/pizzabek

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

### lesson-5

1. Desktop first
2. Mobile first
3. max-width and min-width
4. @import css;
5. Project

## Desktop first

```

@media only screen and (max-width: 600px) {...}

```

## Mobile first

```
@media only screen and (min-width: 600px) {...}

```

## Desktop and Mobile (custom breakpoints)
#### Combining min-width and max-width media queries

```
@media only screen and (max-width: 600px) and (min-width: 400px) {...}

```

## PROJECT 😁