github.com/lmittmann/w3@v0.20.0/docs/pages/style.css (about)

     1  @tailwind base;
     2  @tailwind components;
     3  @tailwind utilities;
     4  
     5  @layer base {
     6      main {
     7          @apply dark:text-neutral-300;
     8      }
     9  
    10      main strong,
    11      main :not(a)>code {
    12          @apply dark:text-white;
    13      }
    14  }
    15  
    16  /* Headings */
    17  h2 {
    18      @apply border-none;
    19  }
    20  
    21  /* Links */
    22  a._underline {
    23      @apply no-underline;
    24  }
    25  
    26  /* Tables */
    27  tr._border-gray-300 td,
    28  tr._border-gray-300 th {
    29      @apply dark:border-neutral-700;
    30  }
    31  
    32  tr._border-gray-300 {
    33      @apply even:bg-neutral-900 !important;
    34  }
    35  
    36  /* Customize header */
    37  .nextra-nav-container nav a[target="_blank"]:nth-child(2):after,
    38  .nextra-nav-container nav a[target="_blank"]:nth-child(3):after,
    39  .nextra-nav-container nav a[target="_blank"]:nth-child(4):after,
    40  aside.nextra-sidebar-container li a[target="_blank"]:after {
    41      content: url('data:image/svg+xml,<svg width="8" height="8" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.33622 2.84025L1.17647 10L0 8.82354L7.15975 1.66378H0.849212V0H10V9.15081H8.33622V2.84025Z" fill="%239195A6"/></svg>');
    42      @apply pl-2;
    43  }
    44  
    45  .nextra-nav-container nav a {
    46      @apply font-semibold;
    47  }
    48  
    49  /* Customize sidebar */
    50  aside.nextra-sidebar-container li._text-sm.\[word-break\:break-word\] {
    51      @apply text-base;
    52  }
    53  
    54  aside.nextra-sidebar-container li._my-4.\[word-break\:break-word\]  {
    55      @apply mt-4 mb-0;
    56  }