mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-28 05:10:09 -07:00
65 lines
1.0 KiB
CSS
65 lines
1.0 KiB
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';
|
|
|
|
body {
|
|
position: relative;
|
|
color: white;
|
|
height: 100vh;
|
|
background-color: whitesmoke;
|
|
|
|
/* background-image: linear-gradient(
|
|
45deg,
|
|
rgba(0, 216, 255, 0.5) 10%,
|
|
rgba(0, 1, 127, 0.7)
|
|
); */
|
|
font-family: Arial, Helvetica, Helvetica Neue, serif;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
body.bp3-dark {
|
|
background-color: #293742;
|
|
|
|
/* background-color: #232c39; */
|
|
}
|
|
|
|
.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;
|
|
}
|