forked from leftypol/leftypol
Add lainchan styles
This commit is contained in:
parent
19c35cdae6
commit
341e6476f9
30 changed files with 1325 additions and 107 deletions
12
stylesheets/svg/bannermaks.svg
Executable file
12
stylesheets/svg/bannermaks.svg
Executable file
|
@ -0,0 +1,12 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300px" height="100px">
|
||||
<defs>
|
||||
<pattern id="pattern2"
|
||||
x="0" y="0" width=".0052083333333" height=".015625"
|
||||
patternUnits="userSpaceOnUse" >
|
||||
<rect x="0" y="0" width=".0026041666667" height=".0078125" style="stroke: none; fill: white; " />
|
||||
</pattern>
|
||||
<mask maskContentUnits="objectBoundingBox" maskUnits="objectBoundingBox" id="masking">
|
||||
<rect x="0" y="0" width="1" height="1" style="fill: url(#pattern2);"/>
|
||||
</mask>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 570 B |
73
stylesheets/svg/blur.svg
Executable file
73
stylesheets/svg/blur.svg
Executable file
|
@ -0,0 +1,73 @@
|
|||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<filter id="blur_green">
|
||||
<feColorMatrix type="saturate" in="SourceGraphic" values="0" result="cox"/>
|
||||
<feColorMatrix type="matrix" in="cox" values=" 0 0 0 0 0
|
||||
1 0 0 0 0
|
||||
0 0 0 0 0
|
||||
1 1 1 0 0
|
||||
" result="dix"/>
|
||||
<feMorphology in="dix" operator="dilate" radius="0.5" result="wangz" />
|
||||
<feGaussianBlur in="wangz" stdDeviation="10" result="blurred"/>
|
||||
<feMerge>
|
||||
<feMergeNode in="blurred"/>
|
||||
<feMergeNode in="dix"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<filter id="blur_red">
|
||||
<feColorMatrix type="saturate" in="SourceGraphic" values="0" result="cox"/>
|
||||
<feColorMatrix type="matrix" in="cox" values=" .925 0 0 0 0
|
||||
.067 0 0 0 0
|
||||
.033 0 0 0 0
|
||||
1 1 1 0 0
|
||||
" result="dix"/>
|
||||
<feMorphology in="dix" operator="dilate" radius="1" result="wangz" />
|
||||
<feGaussianBlur in="wangz" stdDeviation="10" result="blurred"/>
|
||||
<feMerge>
|
||||
<feMergeNode in="blurred"/>
|
||||
<feMergeNode in="dix"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<filter id="blur_amber">
|
||||
<feColorMatrix type="saturate" in="SourceGraphic" values="0" result="cox"/>
|
||||
<feColorMatrix type="matrix" in="cox" values=" 0 1 0 0 0
|
||||
0 .556 0 0 0
|
||||
0 0 0 0 0
|
||||
1 1 0 0 0
|
||||
" result="dix"/>
|
||||
<feMorphology in="dix" operator="dilate" radius="1" result="wangz" />
|
||||
<feGaussianBlur in="wangz" stdDeviation="10" result="blurred"/>
|
||||
<feMerge>
|
||||
<feMergeNode in="blurred"/>
|
||||
<feMergeNode in="dix"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<filter id="blur_purple">
|
||||
<feColorMatrix type="saturate" in="SourceGraphic" values="0" result="cox"/>
|
||||
<feColorMatrix type="matrix" in="cox" values=" 0 .1 .7 0 0
|
||||
0 0 0 0 0
|
||||
0 .1 2 0 0
|
||||
0 .1 1 0 0
|
||||
" result="dix"/>
|
||||
<feMorphology in="dix" operator="dilate" radius="1" result="wangz" />
|
||||
<feGaussianBlur in="wangz" stdDeviation="10" result="blurred"/>
|
||||
<feMerge>
|
||||
<feMergeNode in="blurred"/>
|
||||
<feMergeNode in="dix"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<filter id="blur_amber_g">
|
||||
<feColorMatrix type="saturate" in="SourceGraphic" values="0" result="cox"/>
|
||||
<feColorMatrix type="matrix" in="cox" values=" 0 1 0 0 0
|
||||
0 .556 0 0 0
|
||||
0 0 0 0 0
|
||||
1 1 0 0 0
|
||||
" result="dix"/>
|
||||
<feMorphology in="dix" operator="dilate" radius="0" result="wangz" />
|
||||
<feGaussianBlur in="wangz" stdDeviation="10" result="blurred"/>
|
||||
<feMerge>
|
||||
<feMergeNode in="blurred"/>
|
||||
<feMergeNode in="dix"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
11
stylesheets/svg/shadow.svg
Executable file
11
stylesheets/svg/shadow.svg
Executable file
|
@ -0,0 +1,11 @@
|
|||
<svg height="0" xmlns="http://www.w3.org/2000/svg">
|
||||
<filter id="drop-shadow">
|
||||
<feGaussianBlur in="SourceGraphic" stdDeviation="4"/>
|
||||
<feOffset dx="0" dy="0" result="offsetblur"/>
|
||||
<feComposite in2="offsetblur" operator="in"/>
|
||||
<feMerge>
|
||||
<feMergeNode/>
|
||||
<feMergeNode in="SourceGraphic"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
</svg>
|
After Width: | Height: | Size: 347 B |
10
stylesheets/svg/terminal.svg
Executable file
10
stylesheets/svg/terminal.svg
Executable file
|
@ -0,0 +1,10 @@
|
|||
<svg>
|
||||
<filter id="sepia">
|
||||
<feColorMatrix
|
||||
type="matrix"
|
||||
values=".343 .669 .119 0 0
|
||||
.249 .626 .130 0 0
|
||||
.172 .334 .111 0 0
|
||||
.000 .000 .000 1 0 "/>
|
||||
</filter>
|
||||
</svg>
|
After Width: | Height: | Size: 179 B |
Loading…
Add table
Add a link
Reference in a new issue