mrcio-ui
Version:
141 lines (138 loc) • 3.32 kB
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var TipStyle = {
tipsBoxShow: {
display: 'flex',
alignItems: 'center',
flexDirection: 'column',
width: '100%',
height: '18.75rem',
position: 'relative'
},
tipsBoxHide: {
display: 'flex',
alignItems: 'center',
flexDirection: 'column',
position: 'relative',
overflow: "hidden",
height: 0,
width: 0
},
svgBox: {
marginTop: '2.5rem'
},
body: {
display: 'flex',
alignItems: 'center',
flexDirection: 'column',
justifyContent: 'center',
margin: '0 2.5rem'
},
body1: {
display: 'flex',
alignItems: 'center',
flexDirection: 'column',
justifyContent: 'center',
margin: '0 2.5rem',
marginTop: "6.5rem"
},
title: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
margin: '1rem 0',
fontSize: '1.5rem',
color: "#6d7580"
},
content: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
flexWrap: 'wrap',
fontSize: '0.875rem',
color: "#999999"
},
buttonBoxOn: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
position: 'absolute',
width: '100%',
bottom: '1rem',
fontSize: '1.125rem',
transition: 'all 0.5s',
cursor: "pointer"
},
buttonBoxOff: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
position: 'absolute',
width: '100%',
bottom: '-1rem',
transition: 'all 0.5s',
cursor: "pointer"
},
success: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
width: '15.625rem',
height: '2.5rem',
background: "#7FE57F",
color: '#fff',
borderRadius: '0.25rem'
},
fail: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
width: '15.625rem',
height: '2.5rem',
background: "#ff6f72",
color: '#fff',
borderRadius: '0.25rem'
},
hint: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
width: '15.625rem',
height: '2.5rem',
background: "#ffbe62",
color: '#fff',
borderRadius: '0.25rem'
},
hintLeft: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
width: '11.875rem',
height: '2.5rem',
background: "#ffbe62",
color: '#fff',
borderRadius: '0.25rem',
margin: '0 1rem'
},
hintRight: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
width: '11.875rem',
height: '2.5rem',
color: '#000',
border: 'solid 0.08rem #dfdfdf',
borderRadius: '0.25rem',
margin: '0 1rem'
},
canvasBox: {
position: "absolute",
top: "0px",
left: "0px",
zIndex: 300
}
};
exports.default = TipStyle;
//# sourceMappingURL=style.js.map