| .navbar-wrapper { | |
| position: relative; | |
| border-bottom: 1px solid var(--border-color); | |
| height: var(--header-height); | |
| padding: 0 12px 0 24px; | |
| background-image: radial-gradient(transparent 1px,var(--bg-color) 1px); | |
| background-size: 4px 4px; | |
| backdrop-filter: blur(4px); | |
| -webkit-backdrop-filter: saturate(50%) blur(4px); | |
| top: 0; |
| for (var i=0; i<3; i++){ | |
| setTimeout( _ => console.log(i), 10); | |
| } // Outputs Strangely:- 3 thrice at given time delay | |
| for (let j=0; j<3; j++){ | |
| setTimeout( _ => console.log(j), 10); | |
| } // Outputs:- 0 1 2 // line by line at the given time delay |
| <link | |
| href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" | |
| rel="icon" | |
| type="image/x-icon" | |
| /> |