BetterDiscordApp-v2/csseditor/src/styles/tools.scss

67 lines
1.4 KiB
SCSS
Raw Normal View History

2018-02-13 20:56:01 +01:00
.parser-error {
padding: 4px 6px;
background: #292b2f;
border-top: 1px solid hsla(218,5%,47%,.3);
color: #d84040;
2018-03-04 00:36:17 +01:00
font-family: monospace;
2018-02-13 20:56:01 +01:00
white-space: pre-wrap;
font-size: 12px;
}
.tools {
height: 36px;
background: #292b2f;
border-top: 1px solid hsla(218,5%,47%,.3);
display: flex;
flex-direction: column;
user-select: none;
.flex-row {
flex-grow: 1;
padding: 4px 5px;
}
button {
border-radius: 3px;
width: 100px;
padding: 3px 10px;
font-size: 12px;
font-weight: 600;
background: #36393f;
color: #bac9d2;
font-family: Whitney,Helvetica Neue,Helvetica,Arial,sans-serif;
2018-03-04 00:36:17 +01:00
transition: background-color .2s ease, color .2s ease;
cursor: pointer;
border: 0;
margin-right: 4px;
2018-02-13 20:56:01 +01:00
flex: 0 0 auto;
&:hover {
background: #44474e;
2018-02-13 20:56:01 +01:00
color: #fff;
}
}
#chkboxLiveUpdate {
padding: 3px 10px;
line-height: 22px;
2018-02-13 20:56:01 +01:00
flex: 0 0 auto;
2018-03-04 00:36:17 +01:00
label {
cursor: pointer;
}
input[type="checkbox"] {
margin: 0 6px 0 0;
cursor: pointer;
}
span {
font-size: 12px;
font-weight: 500;
color: #bac9d2;
font-family: Whitney,Helvetica Neue,Helvetica,Arial,sans-serif;
}
}
}