react-native-ocss
Version:
#### 干嘛
108 lines • 2.33 kB
JavaScript
module.exports.styles = require('react-native').StyleSheet.create({
"a": {
"borderWidth": 1,
"borderStyle": "solid",
"borderColor": "#ccc",
"borderLeftWidth": 1,
"borderLeftColor": "#ccc",
"borderTopLeftRadius": 10,
"borderTopRightRadius": 2,
"borderBottomLeftRadius": 2,
"borderBottomRightRadius": 3
},
"a2": {
"borderWidth": 2,
"borderStyle": "solid",
"borderColor": "#fff",
"borderLeftWidth": 3,
"borderLeftColor": "#fff",
"borderTopLeftRadius": 12,
"borderTopRightRadius": 6,
"borderBottomLeftRadius": 6,
"borderBottomRightRadius": 12
},
"b": {
"marginVertical": 0,
"marginHorizontal": 20,
"paddingVertical": 10,
"paddingHorizontal": 0
},
"c": {
"margin": 0,
"paddingTop": 1,
"paddingBottom": 3,
"paddingRight": 2,
"paddingLeft": 4
},
"d": {
"marginTop": 1,
"marginBottom": 4,
"marginHorizontal": 3,
"position": "relative"
},
"e": {
"transform": [{
"rotate": "1deg"
}]
},
"f": {
"transform": [{
"scaleX": 1
}, {
"scaleY": 2
}]
},
"f1": {
"transform": [{
"scale": 1
}]
},
"g": {
"transform": [{
"skewX": "10deg"
}, {
"skewY": "20deg"
}]
},
"g1": {
"transform": [{
"skewX": "10deg"
}, {
"skewY": "10deg"
}]
},
"h": {
"transform": [{
"translateX": 10
}, {
"translateY": 20
}]
},
"h1": {
"transform": [{
"translateX": 10
}, {
"translateY": 10
}]
},
"i": {
"transform": [{
"perspective": 600
}, {
"rotateY": "45deg"
}]
},
"j": {
"textDecorationLine": "underline line-through",
"textDecorationStyle": "dotted"
},
"k": {
"shadowColor": "#888888",
"shadowOffset": {
"width": 10,
"height": 10
},
"shadowRadius": 5,
"shadowOpacity": 0.4
}
});