55 lines
915 B
Plaintext
55 lines
915 B
Plaintext
.container {
|
|
display: flex;
|
|
width: 100%;
|
|
min-height: 100%;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
|
|
.control {
|
|
padding: 4px;
|
|
}
|
|
|
|
.item {
|
|
padding-bottom: 10px;
|
|
|
|
.symbol {
|
|
width: 50px;
|
|
height: 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 25px;
|
|
margin: 10px;
|
|
font-size: large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.main {
|
|
margin-top: 5px;
|
|
width: 100%;
|
|
}
|
|
|
|
.sub {
|
|
width: 100%;
|
|
|
|
.type {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.types {
|
|
padding: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
.empty {
|
|
display: flex;
|
|
width: 100%;
|
|
flex: 1;
|
|
background-color: white;
|
|
align-items: center;
|
|
justify-content: center;
|
|
} |