1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-28 05:10:09 -07:00
deskreen/app/app.global.css
2020-08-19 17:08:23 +03:00

58 lines
970 B
CSS

/*
* @NOTE: Prepend a `~` to css file paths that are in your node_modules
* See https://github.com/webpack-contrib/sass-loader#imports
*/
@import '~@fortawesome/fontawesome-free/css/all.css';
@import '~normalize.css/normalize.css';
@import '~@blueprintjs/core/lib/css/blueprint.css';
@import '~react-flexbox-grid/dist/react-flexbox-grid.css';
body {
position: relative;
color: white;
height: 100vh;
background-color: whitesmoke;
font-family: Arial, Helvetica, Helvetica Neue, serif;
overflow-y: hidden;
}
body.bp3-dark {
background-color: #293742;
}
/* .bp3-button {
outline: none !important;
}
.bp3-control {
outline: none !important;
} */
h2 {
margin: 0;
font-size: 2.25rem;
font-weight: bold;
letter-spacing: -0.025em;
color: #fff;
}
p {
font-size: 24px;
}
li {
list-style: none;
}
a {
color: white;
opacity: 0.75;
text-decoration: none;
}
a:hover {
opacity: 1;
text-decoration: none;
cursor: pointer;
}