mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-08 11:22:54 +00:00
126 lines
2.0 KiB
SCSS
126 lines
2.0 KiB
SCSS
/**
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership.
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
* (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
body {
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
font-size: $font-size-normal;
|
|
color: $font-color;
|
|
font-family: Helvetica, Arial, "Source Han Sans CN", "Microsoft YaHei", sans-serif;
|
|
text-rendering: optimizelegibility;
|
|
text-size-adjust: 100%;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
div,
|
|
header,
|
|
footer,
|
|
nav,
|
|
article,
|
|
section,
|
|
aside,
|
|
label,
|
|
input,
|
|
textarea,
|
|
select,
|
|
button,
|
|
ul,
|
|
ol,
|
|
li,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
a,
|
|
img {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input,
|
|
textarea,
|
|
select,
|
|
button {
|
|
font-size: 100%;
|
|
font-family: inherit;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 26px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 21px;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
h5 {
|
|
font-size: $font-size-normal;
|
|
}
|
|
|
|
h6 {
|
|
font-size: 1em;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
margin: 0;
|
|
padding-left: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
color: inherit;
|
|
-webkit-tap-highlight-color: transparent;
|
|
appearance: none;
|
|
}
|
|
|
|
hr {
|
|
border-width: 0;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
|
|
blockquote {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
padding-left: 1.2em;
|
|
border-left: 4px solid #cacaca;
|
|
}
|
|
|
|
.el-dialog__body {
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
code,
|
|
pre {
|
|
font-family: Consolas, Menlo, Courier, monospace;
|
|
}
|