doc_class_panel_autocomplete_stylesheet.css (778B)
1 .auto-stylesheet-class-1 { 2 padding: 1em; 3 } 4 .auto-stylesheet-class-2 { 5 padding: 2em; 6 } 7 .auto-stylesheet-class-3 { 8 padding: 3em; 9 } 10 11 .auto-stylesheet-class-1, 12 div.auto-stylesheet-class-2, 13 p:first-of-type.auto-stylesheet-class-3, 14 .auto-stylesheet-class-4 { 15 background-color: blue; 16 } 17 18 :root .auto-bold .auto-stylesheet-class-5 { 19 font-size: 1em; 20 21 & .auto-stylesheet-nested-class-1, 22 &:is(.auto-stylesheet-nested-class-2), 23 &:has(.auto-stylesheet-nested-class-3) { 24 font-weight: bold; 25 } 26 } 27 28 @media (min-width: 1000px) { 29 .auto-stylesheet-nested-class-4 { 30 color: black; 31 } 32 33 @media (prefers-color-scheme: dark) { 34 .auto-stylesheet-nested-class-5 { 35 color: white; 36 37 &.auto-stylesheet-nested-class-6 { 38 outline: 1px solid; 39 } 40 } 41 } 42 }