index.css 4.0 KB
Newer Older
B
bayanxing 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
/**
 * Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
 * Licensed 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.
 */

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.toolbar1{
    width: 100%;
    height: 100%;
    min-width: 25px;
    min-height: 10px;
    max-height: 50px;
    padding-left: 1px;
    padding-top: 2px;
    padding-right: 5px;
    padding-bottom: 3px;
    margin-left: 10px;
    margin-top: 20px;
    margin-right: 15px;
    margin-bottom: 5px;
    border-left-style: solid;
    border-right-style: dashed;
    border-top-style: dashed;
    border-bottom-style: dotted;
    border-left-width: 2px;
    border-right-width: 3px;
    border-top-width: 1px;
    border-bottom-width: 1.5px;
    border-left-color: #ff0000;
    border-right-color: #00ff00;
    border-top-color: #0000ff;
    border-bottom-color: #fff000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 12px;
    background: linear-gradient(pink,#fff000);
    box-shadow: 2px 4px 6px 8px #888888;
    opacity: 0.5;
    display: flex;
    visibility: visible;
    align-self: center;
    image-fill: #000fff;
    clip-path: margin-box;
}

.toolbar2{
    width: 70%;
    height:100px;
    padding-start: 10px;
    padding-end: 15px;
    margin-start: 5px;
    margin-end: 10px;
    border-style: dotted;
    border-width: 2px;
    border-color:#000000;
    border-radius:5px;
    background-color:#ffaa00;
    mask-image: url('common/images/icon.png');
    mask-size: cover;
    mask-position: center;
    flex:1;
    flex-grow: 2;
    flex-basis: 10px;
    flex-shrink: 1;
}

.toolbar3{
    width: 100%;
    height: 50px;
    padding: 10px;
    margin: 5px;
    border-left: 1px solid #000000;
    border-right:  2px dashed #00ff00;
    border-top:  1.5px dotted #0000ff;
    border-bottom:  2.5px dotted #fff000;
B
bayanxing 已提交
93
    background-image:url('common/images/image.png');
B
bayanxing 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    background-size:contain;
    background-repeat: repeat-x;
    background-position: center;
}

.toolbar4{
    width: 100%;
    height: 50px;
    padding: 10px;
    margin: 5px;
    border: 1px solid #000000;
}

.contain1{
    flex-direction: column;
    height: 100px;
}

.toolbar5{
    width: 100%;
    height: 30px;
    background-color: yellow;
B
bayanxing 已提交
116
    border-image-source: url('/common/images/image.png');
B
bayanxing 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
    border-image-slice: 1px 2px 3px 4px;
    border-image-width: 2px 3px 4px 5px;
    border-image-outset: 3px 4px 5px 6px;
    border-image-repeat: repeat;
}

.toolbar6{
    width: 100%;
    height: 30px;
    position: absolute;
    left: 10px;
    top: 35px;
    bottom: 5px;
    right: 10px;
    background-color: pink;
    border-image: url('common/images/icon.png') 1px 2px 3px 4px 2px 3px 4px 5px 3px 4px 5px 6px round;
}

.item1{
    color: darkorange;
    font-size:10px;
    background-color: cornflowerblue;
    allow-scale: true;
    font-style: italic;
    font-weight: 700;
    text-decoration: line-through;
    font-family: sans-serif;
    opacity: 0.5;
    display:flex;
    visibility: visible;
}

.item2{
    color: pink;
    font-size:20px;
    font-style: italic;
    background-color: darkgoldenrod;
    allow-scale: false;
    font-style: italic;
    font-weight: 400;
    text-decoration: line-through;
    font-family: sans-serif;
    opacity:0.7;
    display:flex;
    visibility: hidden;
}

.item3{
    color: violet;
    font-size:16px;
    background-color: yellow;
    font-weight: 700;
    text-decoration: line-through;
    opacity: 1;
    display: none;
}