feat: initial commit

This commit is contained in:
2023-10-11 21:51:24 +02:00
commit 8709837ef1
128 changed files with 2464 additions and 0 deletions

5
.emacs.snippets/css-mode/bg Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: background-color: ...
# key: bg
# --
background-color: #${1:DDD};

5
.emacs.snippets/css-mode/bgi Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: background-image: ...
# key: bgi
# --
background-image: url($1);

5
.emacs.snippets/css-mode/bor Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: border size style color
# key: bor
# --
border: ${1:1px} ${2:solid} #${3:999};

5
.emacs.snippets/css-mode/cl Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: clear: ...
# key: cl
# --
clear: $1;

5
.emacs.snippets/css-mode/dispb Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: display: block
# key: dispb
# --
display: block;

5
.emacs.snippets/css-mode/dispi Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: display: inline
# key: dispi
# --
display: inline;

5
.emacs.snippets/css-mode/dispn Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: display: none
# key: dispn
# --
display: none;

5
.emacs.snippets/css-mode/ff Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: font-family: ...
# key: ff
# --
font-family: $1;

5
.emacs.snippets/css-mode/fs Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: font-size: ...
# key: fs
# --
font-size: ${12px};

5
.emacs.snippets/css-mode/mar Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: margin: ...
# key: mar
# --
margin: $1;

5
.emacs.snippets/css-mode/marb Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: margin-bottom: ...
# key: marb
# --
margin-bottom: $1;

5
.emacs.snippets/css-mode/marl Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: margin-left: ...
# key: marl
# --
margin-left: $1;

5
.emacs.snippets/css-mode/marr Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: margin-right: ...
# key: marr
# --
margin-right: $1;

5
.emacs.snippets/css-mode/mart Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: margin-top: ...
# key: mart
# --
margin-top: $1;

5
.emacs.snippets/css-mode/pad Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: padding: ...
# key: pad
# --
padding: $1;

5
.emacs.snippets/css-mode/padb Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: padding-bottom: ...
# key: padb
# --
padding-bottom: $1;

5
.emacs.snippets/css-mode/padl Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: padding-left: ...
# key: padl
# --
padding-left: $1;

5
.emacs.snippets/css-mode/padr Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: padding-right: ...
# key: padr
# --
padding-right: $1;

5
.emacs.snippets/css-mode/padt Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: padding-top: ...
# key: padt
# --
padding-top: $1;