You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
.profile,page{
|
|
|
|
background: #eeeeee;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.header{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
background: #00b0f0;
|
|
|
|
color: white;
|
|
|
|
padding: 0 8px 0 16px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.header>.error{
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
transition: 0.72s all ease;
|
|
|
|
background: orange;
|
|
|
|
color: white;
|
|
|
|
padding: 0 20px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
z-index: -1;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.error.show{
|
|
|
|
opacity: 1;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header>button{
|
|
|
|
margin: 2px 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.form-item{
|
|
|
|
background: #fefefe;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 10px 12px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
}
|
|
|
|
.form-item>.value{
|
|
|
|
text-align: right;
|
|
|
|
flex: auto;
|
|
|
|
}
|
|
|
|
.form-item>.key{
|
|
|
|
display: inline-block;
|
|
|
|
flex: none;
|
|
|
|
}
|
|
|
|
.form-item .tip{
|
|
|
|
font-size: 12px;
|
|
|
|
color: dimgray;
|
|
|
|
}
|
|
|
|
.form-item>switch{
|
|
|
|
transform: scale(0.8)
|
|
|
|
}
|
|
|
|
.gap{
|
|
|
|
height: 3px;
|
|
|
|
}
|
|
|
|
.avatar{
|
|
|
|
border-radius: 50%;
|
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
|
|
|
margin: 0 14px;
|
|
|
|
}
|