• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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  flex-direction: column;
18  justify-content: center;
19  align-items: center;
20  width: 100%;
21  height: 100%;
22}
23
24.slider_container {
25  flex-direction: column;
26  justify-content: center;
27  align-items: center;
28
29  width: 100%;
30  height: 65%;
31  background-color: #000000;
32}
33
34.text_content {
35  width: 100%;
36  height: 12%;
37  text-align: center;
38}
39
40.slider {
41  width: 100%;
42  height: 20px;
43}
44
45.option_container {
46  width: 100%;
47  height: 80px;
48  flex-direction: row;
49}
50
51.option_input {
52  width: 100%;
53  height: 100%;
54  background-color: lightblue;
55}
56
57.back-page {
58  width: 100%;
59  height: 20%;
60  border-width: 2px;
61  background-color: #262626;
62}
63