mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
18 lines
353 B
CSS
18 lines
353 B
CSS
Button {
|
|
background-color: red;
|
|
background-image: url('~/ui-tests-app/image-view/gravatar2.png');
|
|
background-position: center;
|
|
background-size: 50% 50%;
|
|
background-repeat: no-repeat;
|
|
width: 100;
|
|
height: 100;
|
|
margin-bottom: 100;
|
|
}
|
|
|
|
.scale-up {
|
|
transform: scale(2, 2);
|
|
}
|
|
|
|
.scale-down {
|
|
transform: scale(0.5, 0.5);
|
|
} |