https://www.geeksforgeeks.org/how-to-design-a-simple-calendar-using-javascript/

chevron_left chevron_right
  • Sun
  • Mon
  • Tue
  • Wed
  • Thu
  • Fri
  • Sat
    update breadcrumbs to be dynamic, pull in title as last node
    Search options: separate word search diacritics

    base

    move file(s)

    command c

    command option v

    showing specific page id s

    ?sub&id=128
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    //  filter hover effect
    .link {
      width: 140px;
      height: 140px;
      color: #fff;
      background-color: orange;
    }
    .link:hover {
      -webkit-filter: brightness(114%);
      -ms-filter: brightness(114%);
      filter: brightness(114%);
    }
    
    //  target EDGE
    despite the fact that it's really not supported in IE, it also doesn't seem to cause any problems. Seems like it's just edge. So I added this: @supports (-ms-ime-align: auto) { .sb-btn:hover{ filter: none; } }
    //  chrome
    cmd-shift-r  //  reload w/out cache
    //  chrome console
    debugger;
    //  hosts file
    mate /etc/hosts
    () = parentheses
    ; = semicolon
    : = colon
    [] = brackets
    {} = curly brackets

    disable click for elements above another

    pointer-events: none;

    Smooth scrolling

    scroll-behavior: smooth;