1/* 2 * Copyright (c) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16.container { 17 width: 100%; 18 height: 100%; 19 justify-content: center; 20 align-items: center; 21 background-color: #262626; 22 flex-direction: column; 23} 24 25.title { 26 width: 100%; 27 height: 80px; 28 font-size: 30px; 29 text-align: center; 30 color: #F8F8FF; 31 padding-top: 15px; 32 background-color: #D3D3D3; 33} 34 35.list-container { 36 height: 330px; 37 width: 100%; 38 border-width: 1px; 39} 40 41.list_item_style { 42 height: 80px; 43 width: 100%; 44 border-width: 2px; 45 background-color: #262626; 46} 47 48.list_item_div { 49 width: 100%; 50 height: 80px; 51 background-color: #262626; 52 border-color: #000000; 53 flex-direction: row; 54} 55 56.list_item_input { 57 width: 100%; 58 height: 100%; 59 color: #F8F8FF; 60 background-color: #262626; 61 font-size: 25px; 62} 63 64.option_container { 65 width: 100%; 66 height: 80px; 67 flex-direction: row; 68} 69 70.option_input { 71 width: 100%; 72 height: 100%; 73 background-color: lightblue; 74}