@neo-one/simulation-react
Version:
NEO•ONE Simulation - Bootstrap a decentralized app with NEO•ONE and React.
47 lines (37 loc) • 595 B
CSS
.Main {
text-align: center;
}
.Main-logo {
animation: Main-logo-spin infinite 20s linear;
height: 80px;
}
.Main-header {
background-color: #222;
height: 150px;
padding: 20px;
color: white;
}
.Main-title {
font-size: 1.5em;
}
.Main-intro {
font-size: large;
}
.Main-invoke-form {
margin-bottom: 8px;
}
.Main-invoke-input {
margin-left: 8px;
margin-right: 8px;
}
.Main-event {
margin-bottom: 8px;
margin-top: 8px;
}
.Main-event-name {
margin-right: 4px;
}
@keyframes Main-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}