Copy body {
color : white ;
font-family : sans-serif ;
}
.area {
border : 1 px solid #FFFFFF ;
border-radius : 10 px ;
transition : border-color 200 ms ease ;
}
.area-title {
position : absolute ;
top : -2 em ;
text-align : center ;
width : 100 % ;
}
.nnc {
position : absolute ;
top : 50 % ;
left : 25 % ;
transform : translate (-50 % , -50 % ) ;
width : 200 px ;
height : 200 px ;
}
.nnc-recognized-class {
position : absolute ;
bottom : -2 em ;
text-align : center ;
width : 100 % ;
}
.mbs {
position : absolute ;
top : 50 % ;
left : 75 % ;
transform : translate (-50 % , -50 % ) ;
width : 600 px ;
height : 600 px ;
}
.mbs-object {
position : absolute ;
border : 3 px solid ;
border-radius : 50 % ;
display : flex ;
justify-content : center ;
align-items : center ;
text-align : center ;
width : 50 px ;
height : 50 px ;
animation : grow 1 s ease forwards ;
}
@keyframes grow {
0% {
transform : scale (0) ;
}
100% {
transform : scale (1) ;
}
}
Copy // index.js
import lampix from '@lampix/core' ;
import './styles.css' ;