add lisp packages

This commit is contained in:
2020-12-05 21:29:49 +01:00
parent 85e20365ae
commit a6e2395755
7272 changed files with 1363243 additions and 0 deletions

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: clear: ...
# --
clear: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: display: block
# --
display: block;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: display: inline
# --
display: inline;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: display: none
# --
display: none;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: font-family: ...
# --
font-family: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: font-size: ...
# --
font-size: ${12px};

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: margin-bottom: ...
# --
margin-bottom: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: margin-left: ...
# --
margin-left: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: margin: ...
# --
margin: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: margin top right bottom left
# --
margin: ${top} ${right} ${bottom} ${left};

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: margin-right: ...
# --
margin-right: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: margin-top: ...
# --
margin-top: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: padding-bottom: ...
# --
padding-bottom: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: padding-left: ...
# --
padding-left: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: padding: ...
# --
padding: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: padding: top right bottom left
# --
padding: ${top} ${right} ${bottom} ${left};

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: padding-right: ...
# --
padding-right: $1;

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com>
# name: padding-top: ...
# --
padding-top: $1;

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# name: -vendor-prefix
# contributor: Prateek Saxena
# key: -v
# --
$1: $2;
-webkit-$1: $2;
-moz-$1: $2;
-ms-$1: $2;
-o-$1: $2;