/*--- title: Tile bar section: div --- Use this Id for setting the background image. Typically you'll want to set background-image: url(""); and background-size: cover; ```example:html
``` */ #title-bar { display: flex; position: fixed; background: rgba(74,74,74,1); top: 0; left: 0; width: 100%; height: 32px; padding-left: 0; justify-content: center; align-items: center; -webkit-app-region: drag; -webkit-user-select: none; box-sizing: content-box; z-index: 1000; } /*--- title: @media section: title-bar --- @media screen and (min-width: 400px) { #title-bar { background-url: url("big"); } } @media screen and (max-width: 600px) { #title-bar { background-color: url("small"); } } */ /*--- title: Branding logo section: div --- Use this class for the branding logo. Typically you'll want to set content: url("") and adjust the width property ```example:html