Add terminal.css
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -1,3 +1,6 @@
|
|||||||
[submodule "static/font/RobotoMono"]
|
[submodule "static/font/RobotoMono"]
|
||||||
path = static/font/RobotoMono
|
path = static/font/RobotoMono
|
||||||
url = https://github.com/googlefonts/RobotoMono.git
|
url = https://github.com/googlefonts/RobotoMono.git
|
||||||
|
[submodule "static/css/terminal.css"]
|
||||||
|
path = static/css/terminal.css
|
||||||
|
url = https://github.com/Gioni06/terminal.css.git
|
||||||
|
10
Makefile
Normal file
10
Makefile
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
.PHONY: all css css-terminal
|
||||||
|
|
||||||
|
all: css
|
||||||
|
|
||||||
|
css: css-terminal
|
||||||
|
|
||||||
|
css-terminal: static/css/terminal.css
|
||||||
|
cd static/css/terminal.css && \
|
||||||
|
npm run build && \
|
||||||
|
test static/css/terminal.css/dist/terminal.min.css
|
@@ -24,7 +24,12 @@
|
|||||||
treefmt = inputs.treefmt-nix.lib.evalModule pkgs ./treefmt.nix;
|
treefmt = inputs.treefmt-nix.lib.evalModule pkgs ./treefmt.nix;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
devShells.${system}.default = pkgs.mkShell { packages = with pkgs; [ hugo ]; };
|
devShells.${system}.default = pkgs.mkShell {
|
||||||
|
packages = with pkgs; [
|
||||||
|
hugo
|
||||||
|
nodejs
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
formatter.${system} = treefmt.config.build.wrapper;
|
formatter.${system} = treefmt.config.build.wrapper;
|
||||||
checks.formatting.${system} = treefmt.config.build.check inputs.self;
|
checks.formatting.${system} = treefmt.config.build.check inputs.self;
|
||||||
|
1
static/css/terminal.css
Submodule
1
static/css/terminal.css
Submodule
Submodule static/css/terminal.css added at dd8a64ce6e
Reference in New Issue
Block a user