summaryrefslogtreecommitdiff
path: root/.emacs.d/mysnippets/text-mode/css-mode
diff options
context:
space:
mode:
authorSimeon Simeonov2013-09-19 22:27:58 +0200
committerSimeon Simeonov2013-09-19 22:27:58 +0200
commit7bf6712498ad2618bee7bf5b3866fb6da0772339 (patch)
treefd4d959c0f1679f2abf5663399d68df0a06472de /.emacs.d/mysnippets/text-mode/css-mode
parentb045e27c545d4027811637193632ec3ea5ef7858 (diff)
All snippets imported, init file polished
Diffstat (limited to '.emacs.d/mysnippets/text-mode/css-mode')
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/bg3
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/bg.13
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/bor3
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/cl4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/disp.block4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/disp.inline4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/disp.none4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/ff4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/fs4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/mar.bottom4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/mar.left4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/mar.mar4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/mar.margin4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/mar.right4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/mar.top4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/pad.bottom4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/pad.left4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/pad.pad4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/pad.padding4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/pad.right4
-rw-r--r--.emacs.d/mysnippets/text-mode/css-mode/pad.top4
21 files changed, 81 insertions, 0 deletions
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/bg b/.emacs.d/mysnippets/text-mode/css-mode/bg
new file mode 100644
index 0000000..d731807
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/bg
@@ -0,0 +1,3 @@
1#name : background-color: ...
2# --
3background-color: #${1:DDD}; \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/bg.1 b/.emacs.d/mysnippets/text-mode/css-mode/bg.1
new file mode 100644
index 0000000..d31f540
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/bg.1
@@ -0,0 +1,3 @@
1#name : background-image: ...
2# --
3background-image: url($1); \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/bor b/.emacs.d/mysnippets/text-mode/css-mode/bor
new file mode 100644
index 0000000..eb3a2b4
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/bor
@@ -0,0 +1,3 @@
1#name : border size style color
2# --
3border: ${1:1px} ${2:solid} #${3:999}; \ No newline at end of file
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/cl b/.emacs.d/mysnippets/text-mode/css-mode/cl
new file mode 100644
index 0000000..4fc7a8d
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/cl
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : clear: ...
3# --
4clear: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/disp.block b/.emacs.d/mysnippets/text-mode/css-mode/disp.block
new file mode 100644
index 0000000..f74ea3c
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/disp.block
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : display: block
3# --
4display: block;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/disp.inline b/.emacs.d/mysnippets/text-mode/css-mode/disp.inline
new file mode 100644
index 0000000..30275a8
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/disp.inline
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : display: inline
3# --
4display: inline;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/disp.none b/.emacs.d/mysnippets/text-mode/css-mode/disp.none
new file mode 100644
index 0000000..80632a5
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/disp.none
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : display: none
3# --
4display: none;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/ff b/.emacs.d/mysnippets/text-mode/css-mode/ff
new file mode 100644
index 0000000..a7352cf
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/ff
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : font-family: ...
3# --
4font-family: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/fs b/.emacs.d/mysnippets/text-mode/css-mode/fs
new file mode 100644
index 0000000..c28cdbb
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/fs
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : font-size: ...
3# --
4font-size: ${12px};
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.bottom b/.emacs.d/mysnippets/text-mode/css-mode/mar.bottom
new file mode 100644
index 0000000..9672f60
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.bottom
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : margin-bottom: ...
3# --
4margin-bottom: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.left b/.emacs.d/mysnippets/text-mode/css-mode/mar.left
new file mode 100644
index 0000000..414353e
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.left
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : margin-left: ...
3# --
4margin-left: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.mar b/.emacs.d/mysnippets/text-mode/css-mode/mar.mar
new file mode 100644
index 0000000..13354db
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.mar
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : margin: ...
3# --
4margin: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.margin b/.emacs.d/mysnippets/text-mode/css-mode/mar.margin
new file mode 100644
index 0000000..97de70c
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.margin
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : margin top right bottom left
3# --
4margin: ${top} ${right} ${bottom} ${left};
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.right b/.emacs.d/mysnippets/text-mode/css-mode/mar.right
new file mode 100644
index 0000000..47a4973
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.right
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : margin-right: ...
3# --
4margin-right: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.top b/.emacs.d/mysnippets/text-mode/css-mode/mar.top
new file mode 100644
index 0000000..c805754
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.top
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : margin-top: ...
3# --
4margin-top: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.bottom b/.emacs.d/mysnippets/text-mode/css-mode/pad.bottom
new file mode 100644
index 0000000..3b9495e
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.bottom
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : padding-bottom: ...
3# --
4padding-bottom: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.left b/.emacs.d/mysnippets/text-mode/css-mode/pad.left
new file mode 100644
index 0000000..ecae515
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.left
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : padding-left: ...
3# --
4padding-left: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.pad b/.emacs.d/mysnippets/text-mode/css-mode/pad.pad
new file mode 100644
index 0000000..ee3a682
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.pad
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : padding: ...
3# --
4padding: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.padding b/.emacs.d/mysnippets/text-mode/css-mode/pad.padding
new file mode 100644
index 0000000..c1009d3
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.padding
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : padding: top right bottom left
3# --
4padding: ${top} ${right} ${bottom} ${left};
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.right b/.emacs.d/mysnippets/text-mode/css-mode/pad.right
new file mode 100644
index 0000000..98a9e12
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.right
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : padding-right: ...
3# --
4padding-right: $1;
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.top b/.emacs.d/mysnippets/text-mode/css-mode/pad.top
new file mode 100644
index 0000000..34987f6
--- /dev/null
+++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.top
@@ -0,0 +1,4 @@
1#contributor : rejeep <johan.rejeep@gmail.com>
2#name : padding-top: ...
3# --
4padding-top: $1;