all css files migrated to scss
This commit is contained in:
parent
2735418e2a
commit
aaf4571559
@ -22,9 +22,13 @@
|
|||||||
],
|
],
|
||||||
"styles": [
|
"styles": [
|
||||||
"./node_modules/simplebar/dist/simplebar.min.css",
|
"./node_modules/simplebar/dist/simplebar.min.css",
|
||||||
"./node_modules/bootstrap/dist/css/bootstrap.min.css",
|
"src/sass/styles.scss"
|
||||||
"src/styles.css"
|
|
||||||
],
|
],
|
||||||
|
"stylePreprocessorOptions": {
|
||||||
|
"includePaths": [
|
||||||
|
"./node_modules/bootstrap/scss"
|
||||||
|
]
|
||||||
|
},
|
||||||
"scripts": [
|
"scripts": [
|
||||||
"./node_modules/simplebar/dist/simplebar.min.js"
|
"./node_modules/simplebar/dist/simplebar.min.js"
|
||||||
]
|
]
|
||||||
|
6
package-lock.json
generated
6
package-lock.json
generated
@ -7124,9 +7124,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"nan": {
|
"nan": {
|
||||||
"version": "2.10.0",
|
"version": "2.11.0",
|
||||||
"resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz",
|
"resolved": "https://registry.npmjs.org/nan/-/nan-2.11.0.tgz",
|
||||||
"integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==",
|
"integrity": "sha512-F4miItu2rGnV2ySkXOQoA8FKz/SR2Q2sWP0sbTxNxz/tuokeC8WxOhPMcwi0qIyGtVn/rrSeLbvVkznqCdwYnw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
|
0
src/sass/_mixins.scss
Normal file
0
src/sass/_mixins.scss
Normal file
0
src/sass/_variables.scss
Normal file
0
src/sass/_variables.scss
Normal file
50
src/sass/styles.scss
Normal file
50
src/sass/styles.scss
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
@import './variables';
|
||||||
|
@import './mixins';
|
||||||
|
|
||||||
|
@import "bootstrap";
|
||||||
|
|
||||||
|
*,
|
||||||
|
*::after,
|
||||||
|
*::before {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
font-family: 'Roboto', sans-serif;
|
||||||
|
/* font-family: "mastodon-font-sans-serif",sans-serif; */
|
||||||
|
font-size: 15px;
|
||||||
|
|
||||||
|
/* color: whitesmoke; */
|
||||||
|
color: #c9cbd4;
|
||||||
|
color: #a8acbc;
|
||||||
|
color: #e8eaf3;
|
||||||
|
background-color: #0f111a;
|
||||||
|
background-color: #0f111a;
|
||||||
|
background-color: #0a0c12;
|
||||||
|
background-color: #141824;
|
||||||
|
}
|
||||||
|
|
||||||
|
.invisible {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
/* .ellipsis {
|
||||||
|
} */
|
||||||
|
|
||||||
|
#toot-content p {
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toot-content a {
|
||||||
|
color: #bec3d8;
|
||||||
|
}
|
@ -1,35 +0,0 @@
|
|||||||
/* You can add global styles to this file, and also import other style files */
|
|
||||||
html, body {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
|
|
||||||
font-family: 'Roboto', sans-serif;
|
|
||||||
/* font-family: "mastodon-font-sans-serif",sans-serif; */
|
|
||||||
font-size: 15px;
|
|
||||||
|
|
||||||
/* color: whitesmoke; */
|
|
||||||
color: #c9cbd4;
|
|
||||||
color: #a8acbc;
|
|
||||||
color: #e8eaf3;
|
|
||||||
background-color: #0f111a;
|
|
||||||
background-color: #0f111a;
|
|
||||||
background-color: #0a0c12;
|
|
||||||
|
|
||||||
background-color: #141824;
|
|
||||||
}
|
|
||||||
|
|
||||||
.invisible {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
/* .ellipsis {
|
|
||||||
} */
|
|
||||||
|
|
||||||
#toot-content p {
|
|
||||||
margin-bottom: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#toot-content a {
|
|
||||||
color: #bec3d8;
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user