48 lines
779 B
Plaintext
48 lines
779 B
Plaintext
/* ヘッダー */
|
|
.header {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 5px;
|
|
background-color: rgb(56, 56, 56);
|
|
}
|
|
|
|
.title {
|
|
-unity-font-style: bold;
|
|
font-size: 14px;
|
|
color: white;
|
|
}
|
|
|
|
ScrollView {
|
|
background-color: #383838;
|
|
border-width: 1px;
|
|
border-color: #2b2b2b;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
}
|
|
|
|
Button {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.label-fixed-width .unity-label {
|
|
min-width: 220px;
|
|
max-width: 220px;
|
|
}
|
|
|
|
#exportButton {
|
|
height: 30px;
|
|
width: 90%;
|
|
font-size: 14px;
|
|
align-self: center;
|
|
border-width: 1px;
|
|
border-color: white;
|
|
}
|
|
|
|
#cancelImportButton {
|
|
height: 30px;
|
|
width: 90%;
|
|
font-size: 14px;
|
|
align-self: center;
|
|
margin-top: 5px;
|
|
} |