Stackedit/src/components/common/app.scss

196 lines
3.0 KiB
SCSS
Raw Normal View History

2017-07-28 20:04:12 +00:00
@import './variables.scss';
@import './base';
@import './markdownHighlighting';
body {
2017-08-06 00:58:39 +00:00
background-color: #fff;
2017-07-28 20:04:12 +00:00
top: 0;
right: 0;
bottom: 0;
left: 0;
position: fixed;
tab-size: 4;
text-rendering: auto;
}
* {
box-sizing: border-box;
}
:focus {
outline: none;
}
.icon {
width: 100%;
height: 100%;
2017-07-28 20:04:12 +00:00
* {
fill: currentColor;
}
}
button,
input,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.text-input {
display: block;
2017-07-31 09:04:01 +00:00
font-variant-ligatures: no-common-ligatures;
2017-07-28 20:04:12 +00:00
width: 100%;
height: 36px;
padding: 3px 12px;
2017-07-31 09:04:01 +00:00
font-size: inherit;
2017-07-28 20:04:12 +00:00
line-height: 1.5;
color: inherit;
background-color: #fff;
background-image: none;
border: 0;
border-radius: $border-radius-base;
}
.button {
color: #333;
background-color: transparent;
display: inline-block;
2017-08-04 20:46:06 +00:00
height: auto;
padding: 6px 12px;
2017-07-28 20:04:12 +00:00
margin-bottom: 0;
font-size: 18px;
2017-07-28 20:04:12 +00:00
font-weight: 400;
line-height: 1.4;
overflow: hidden;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 0;
border-radius: $border-radius-base;
&:active,
&:focus,
&:hover {
2017-07-28 20:04:12 +00:00
color: #333;
background-color: rgba(0, 0, 0, 0.067);
outline: 0;
text-decoration: none;
2017-07-28 20:04:12 +00:00
}
2017-08-25 10:37:46 +00:00
&[disabled] {
&,
&:active,
&:focus,
&:hover {
2017-10-02 00:34:48 +00:00
opacity: 0.33;
2017-08-25 10:37:46 +00:00
background-color: transparent;
2017-10-02 00:34:48 +00:00
cursor: not-allowed;
2017-08-25 10:37:46 +00:00
}
}
2017-07-28 20:04:12 +00:00
}
.textfield {
background-color: transparent;
border: 0;
font-family: inherit;
font-weight: 400;
font-size: 1.05em;
padding: 0 0.6rem;
box-sizing: border-box;
width: 100%;
max-width: 100%;
color: inherit;
height: 2.6rem;
&:focus {
outline: none;
}
&[disabled] {
cursor: not-allowed;
background-color: #f8f8f8;
color: #999;
}
}
2017-07-28 20:04:12 +00:00
.flex {
display: flex;
}
.flex--row {
flex-direction: row;
}
.flex--column {
flex-direction: column;
}
2017-08-04 20:46:06 +00:00
.flex--center {
justify-content: center;
}
2017-08-06 00:58:39 +00:00
.flex--end {
justify-content: flex-end;
}
.flex--space-between {
justify-content: space-between;
}
2017-08-04 20:46:06 +00:00
.flex--align-center {
align-items: center;
}
2017-08-04 08:20:50 +00:00
.side-title {
height: 44px;
line-height: 36px;
2017-08-06 00:58:39 +00:00
padding: 4px 4px 0;
2017-08-04 08:20:50 +00:00
background-color: rgba(0, 0, 0, 0.1);
flex: none;
}
.side-title__button {
width: 38px;
2017-08-04 20:46:06 +00:00
height: 36px;
2017-08-04 08:20:50 +00:00
padding: 6px;
display: inline-block;
background-color: transparent;
opacity: 0.75;
2017-08-06 00:58:39 +00:00
flex: none;
2017-08-04 08:20:50 +00:00
/* prevent from seeing wrapped buttons */
margin-bottom: 20px;
&:active,
&:focus,
&:hover {
opacity: 1;
background-color: rgba(0, 0, 0, 0.1);
2017-08-04 08:20:50 +00:00
}
}
.side-title__title {
text-transform: uppercase;
padding: 0 5px;
2017-08-06 00:58:39 +00:00
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 100%;
2017-08-04 08:20:50 +00:00
}
2017-10-02 00:34:48 +00:00
.logo-background {
background: no-repeat center url('../assets/logo.svg');
background-size: contain;
}