Skip to content

Instantly share code, notes, and snippets.

View tzi's full-sized avatar
👨‍🎓
enseigner les CSS

Thomas ZILLIOX tzi

👨‍🎓
enseigner les CSS
View GitHub Profile
@kaelig
kaelig / input.scss
Created November 21, 2012 22:41 — forked from blackfalcon/01_SassMeister.sass
Extending placeholder selectors within media queries
%myclass {
color: blue;
@media (min-width: 600px) {
background: red;
}
@media (min-width: 800px) {
font-size: 28px;
}
}
@m4dz
m4dz / README.md
Last active March 17, 2016 13:26
jQuery plugins boilerplates

This files contains my boilerplates for jQuery plugins.

@tzi
tzi / index.html
Last active March 3, 2016 14:16
MorningJS - A simple lib to create widget
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>MorningJS</title>
<style>
/* Global styles have no effect on widget */
h1 {
font-weight: normal;
}
@tzi
tzi / index.md
Last active April 15, 2016 10:05
BEM References

It's gone!

See you there ;)

@tzi
tzi / component.scss
Last active September 3, 2017 15:03
Using a "next generation mixin" to generate themes in sass
// Passing arguments from a mixin to a content block
// Planned for Sass 4
// https://github.com/sass/sass/issues/871
// File: common.scss
$theme-colors: (
pink: #FF69B4,
orange: #FFA500,
);