PromucFlow_constructor/app/client/src/index.css

65 lines
1.2 KiB
CSS
Raw Normal View History

2019-12-16 08:49:10 +00:00
@import "~normalize.css";
@import "~@blueprintjs/core/lib/css/blueprint.css";
@import "~@blueprintjs/icons/lib/css/blueprint-icons.css";
2019-01-21 15:11:10 +00:00
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2019-08-20 13:19:19 +00:00
background: #efefef;
2019-01-21 15:11:10 +00:00
}
body.fontLoaded {
2019-09-06 11:40:00 +00:00
font-family: "DM Sans", sans-serif;
}
2019-01-21 15:11:10 +00:00
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
2019-11-21 10:52:49 +00:00
* {
outline: none !important;
}
2019-11-21 10:52:49 +00:00
div.bp3-select-popover .bp3-popover-content {
padding: 0;
}
span.bp3-popover-target {
display: block;
}
2019-11-21 10:52:49 +00:00
div.bp3-popover-arrow {
display:none;
2019-12-03 09:21:06 +00:00
}
.pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.pace-inactive {
display: none;
}
/* The color of the loader is defined by the theme
TODO(abhinav): move this into the app to wrap
*/
.pace > div.pace-progress {
background: #29CCA3;
position: fixed;
z-index: 2000;
top: 0;
right: 100%;
width: 100%;
height: 5px;
2019-11-21 10:52:49 +00:00
}