30 lines
376 B
CSS
30 lines
376 B
CSS
:host {
|
|
display: block;
|
|
margin: 20px;
|
|
}
|
|
|
|
.judge-form {
|
|
min-width: 150px;
|
|
max-width: 500px;
|
|
width: 100%;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
.half-width {
|
|
width: calc(50% - 10px);
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.half-width:last-of-type {
|
|
width: calc(50%);
|
|
margin-right: 0;
|
|
}
|
|
|
|
button + mat-divider {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|