- Udacity Javascript Basics
- NodeSchool.io - Javascripting
- Safari - Professional Javascript for Web Developers
- Udacity Object-Oriented JavaScript
- Safari - You dont know JS series
- NodeSchool - Promise it won't hurt
- NodeSchool - Planet proto
- Udacity JavaScript Design Patterns
- NodeSchool - Scope Chains and Closures
This file contains 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 characters
const teacher = [ | |
{ | |
email: '[email protected]', | |
surname: 'charles Bertrand', | |
name: 'Priso', | |
password: '******', | |
model: 'teacher', | |
lessonAssigned: [ | |
{ | |
Title: '', |
This file contains 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 characters
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) { | |
/* regles CSS */ | |
} |
This file contains 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 characters
@media only screen and (min-width: 480px), (orientation: landscape) { | |
/* regles CSS */ | |
} |
This file contains 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 characters
@media only screen and (max-width: 480px) and (min-resolution: 300dpi) { | |
/* regles CSS */ | |
} |
This file contains 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 characters
@media only screen and (min-resolution: 300dpi) { | |
/* CSS pour ecran haute definition */ | |
} |
This file contains 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 characters
@media only screen and (min-width: 320px) { | |
/* la regle s'applique pour une taille d'ecran comprise entre 320px - 479px */ | |
} | |
@media only screen and (min-width: 480px) { | |
/* la regle s'applique pour des ecrans aux tailles > 480px */ | |
} |
This file contains 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 characters
@media only screen and (min-width: 320px) and (max-width: 480px) { | |
/* ruleset for 320px - 480px */ | |
} |
This file contains 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 characters
@media only screen and (max-width: 480px) { | |
body { | |
font-size: 12px; | |
} | |
} |