tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Sidebar.css (780B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 /*
      6 * Sidebar list container
      7 */
      8 .sidebar {
      9  background-color: var(--bg-color);
     10 }
     11 
     12 /* vertical layout -> the sidebar is the first row */
     13 @media (max-width: 700px) {
     14  .sidebar {
     15    border-block-end: 1px solid var(--separator-color);
     16  }
     17 }
     18 
     19 /* wide layout -> the sidebar occupies a whole column on the side */
     20 @media (min-width: 701px) {
     21  .sidebar {
     22    min-height: 100vh;
     23    border-inline-end: 1px solid var(--separator-color);
     24  }
     25 }
     26 
     27 .sidebar__list {
     28  list-style: none;
     29  padding: 0;
     30  font-size: var(--body-10-font-size);
     31  font-weight: var(--body-10-font-weight);
     32 }