| Instance | Branch |
|---|
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 characters
| /*=============== VARIABLES CSS ===============*/ | |
| :root{ | |
| --header-height: 3.5rem; /* 56px */ | |
| /*===== colors =====*/ | |
| --first-color: ; | |
| --first-color-alt: ; | |
| --first-color-light: ; | |
| --first-color-lighten: ; | |
| --title-color: ; |
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 characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- FAVICON --> | |
| <link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon"> | |
| <!-- GOOGLE FONTS --> |
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 characters
| linear-gradient(120deg,#ffa600,#ff5f58 30%,#4044b7 88%,#6151a2) | |
| linear-gradient(90deg,#4ca5ff 2.34%,#b673f8 100.78%) |
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 characters
| ExecutionContext = { | |
| VariableEnvironment: { … }, | |
| LexicalEnvironment: { … }, | |
| // other components | |
| } |
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 characters
| executioncontext.environment = { | |
| // storage | |
| <identifier> : <value>, | |
| <identifier> : <value>, | |
| // reference to the parent environment | |
| outer: <…> | |
| } |
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 characters
| executioncontext.environment = { | |
| environmentRecord: { | |
| // storage | |
| <identifier> : <value> | |
| <identifier> : <value> | |
| } | |
| // reference to the parent environment | |
| outer: <…> | |
| } |
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 characters
| Till ES2020 | From ES2021 | |
|---|---|---|
| The `LexicalEnvironment component` and `VariableEnvironment component` of an execution context are always Lexical Environments | The `LexicalEnvironment component` and `VariableEnvironment` components of an execution context are always Environment Records |