123 lines
2.0 KiB
CSS
123 lines
2.0 KiB
CSS
.App {
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.App-logo {
|
|
height: 40vmin;
|
|
pointer-events: none;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
.App-logo {
|
|
animation: App-logo-spin infinite 20s linear;
|
|
}
|
|
}
|
|
|
|
.App-header {
|
|
background-color: #282c34;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: calc(10px + 2vmin);
|
|
color: white;
|
|
}
|
|
|
|
.App-link {
|
|
color: #61dafb;
|
|
}
|
|
|
|
@keyframes App-logo-spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.MuiFormControlLabel-label {
|
|
font-size: 13px !important;
|
|
}
|
|
|
|
.MuiDialog-root {
|
|
background-color: white;
|
|
}
|
|
|
|
.pane-btn {
|
|
border-radius: 8px;
|
|
border: 3px solid #494949;
|
|
display: inline-block;
|
|
height: 62px;
|
|
line-height: 62px;
|
|
width: 62px;
|
|
cursor: pointer;
|
|
outline: none;
|
|
font-weight: bold;
|
|
background: #494949;
|
|
color: #eee;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.pane-btn.checked {
|
|
border: 3px solid #00DE7A;
|
|
}
|
|
|
|
.pane-btn + .pane-btn {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.generate-btn {
|
|
border-radius: 4px;
|
|
display: inline-block;
|
|
height: 40px;
|
|
width: 150px;
|
|
cursor: pointer;
|
|
outline: none;
|
|
font-weight: bold;
|
|
font-size: 22px;
|
|
background-color: rgb(82, 146, 242);
|
|
border: 1px #367fed solid;
|
|
}
|
|
|
|
.language-select-container {
|
|
display: flex;
|
|
align-items: center;
|
|
position: fixed;
|
|
right: 24px;
|
|
top: 24px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.language-select-container .language-select {
|
|
width: 156px;
|
|
height: 42px;
|
|
background-color: #36383A;
|
|
color: #EEEEEE;
|
|
font-size: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.language-select-warpper {
|
|
position: relative;
|
|
border-radius: 5px;
|
|
background: #36383A;
|
|
border: 1px solid #5B5B5B;
|
|
box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.language-select-warpper .language-icon {
|
|
position: absolute;
|
|
left: 14px;
|
|
top: 11px;
|
|
z-index: 2000;
|
|
}
|
|
|
|
.language-select-container .language-select fieldset {
|
|
display: none;
|
|
}
|