1/** 2 * Copyright (c) 2024, The Linux Foundation. 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5.cs-search-bar { 6 position: relative; 7 display: inline-block; 8 width: 100%; 9 margin-bottom: 2rem; 10 margin-top: 1rem; 11} 12 13.cs-search-bar input { 14 background-color: var(--input-background-color); 15 color: var(--input-text-color); 16 width: 100%; 17 padding: 10px 40px 10px 20px; 18 border: 1px solid #ccc; 19 border-radius: 25px; 20 font-size: 16px; 21 outline: none; 22 box-shadow: none; 23} 24 25.cs-search-bar i { 26 position: absolute; 27 top: 50%; 28 right: 15px; 29 transform: translateY(-50%); 30 color: #ccc; 31 font-size: 18px; 32} 33 34.code-sample-listing mark { 35 background: inherit; 36 font-style: inherit; 37 font-weight: inherit; 38 color: inherit; 39 border-radius: 4px; 40 outline: 4px solid rgba(255, 255, 0, 0.3); 41 outline-offset: 2px; 42} 43