Skip to content

Instantly share code, notes, and snippets.

@kazu2012
kazu2012 / filter.css
Created October 12, 2016 02:12 — forked from sayar/filter.css
Standard CSS3 Filters Example
img {
filter: grayscale(50%) opacity(10%);
}
@keyframes filter-animation {
0% {
filter: opacity(0);
}
50% {
filter: opacity(100%);
@kazu2012
kazu2012 / slide.md
Created March 18, 2016 14:45 — forked from yusukebe/slide.md
sample

Title

Hi, my name is yusukebe.


Lists

  • List1
  • List2

Skewed background with CSS

This is a quick example to show @AlbertGlezRoges how to get skewed backgrounds with plain HTML & CSS.

A Pen by Jose L Pimienta on CodePen.

License.

@kazu2012
kazu2012 / jade-ftw.md
Created February 23, 2016 12:55 — forked from japboy/jade-ftw.md
Jade について。

Jade FTW

こんにちは。今回は現実逃避を兼ねて Jade の素晴らしさをお伝えしたいと思います。

Jade とは何か

[Jade][0] は JST (JavaScript Templates) の一つであり、HTML を書くための[軽量マークアップ言語][1] である [Haml][2] に影響を受けた JavaScript テンプレートエンジンでもあります。

@kazu2012
kazu2012 / dabblet.css
Created October 14, 2012 13:29
animated gradient display
/**
* animated gradient display
*/
body {
padding: 75px 0;
font-family: Helvetica;
font-size: 15px;
}
h1 {
margin: 0 0 8px;
@kazu2012
kazu2012 / dabblet.css
Created October 14, 2012 13:21
animated gradient display
/**
* animated gradient display
*/
body {
padding: 75px 0;
font-family: Helvetica;
font-size: 15px;
}
h1 {
margin: 0 0 8px;
@kazu2012
kazu2012 / dabblet.html
Created October 14, 2012 13:11
Untitled
<!-- content to be placed inside <body>…</body> -->
<p>Hover over the panels to see the effects :)
<div class="panels">
<a class="panel p0" href="#">
<div class="panel-info">
<h1>Rainbow.</h1>
Bouncing <code>transition</code> on
<code>background-size</code> and
<code>background-position</code>.
</div>
@kazu2012
kazu2012 / dabblet.css
Created September 4, 2012 12:59
animated gradient display
/**
* animated gradient display
*/
body {
padding: 75px 0;
font-family: Helvetica;
font-size: 15px;
}
h1 {
margin: 0 0 8px;
@kazu2012
kazu2012 / dabblet.css
Created August 26, 2012 12:20
div with irregular shapes with css3 and html5
/**
* div with irregular shapes with css3 and html5
*/
div { box-sizing: border-box; }
.container {
overflow: hidden;
width: 32em;
height: 32em;
margin: 5.6em auto 0;
background: silver;