Skip to content

Instantly share code, notes, and snippets.

View dziudek's full-sized avatar

Tomasz Dziuda dziudek

View GitHub Profile
/**
* Tabs
*/
#tabs {
background: #aaa;
position: relative;
transition: all 1s linear;
}
@dziudek
dziudek / dabblet.css
Created April 1, 2012 09:51
Simple solution for long tables in responsive design
/**
* Simple solution for long tables in responsive design
*/
table:before {
content: "Scroll horizontally to view the whole table";
height: 14px;
width: 100%;
display: block;
font-size: 10px;
@dziudek
dziudek / dabblet.css
Created April 1, 2012 09:49
Simple CSS UI Kit
/**
* Simple CSS UI Kit
*/
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
@dziudek
dziudek / dabblet.css
Created March 29, 2012 15:45
Simple CSS UI Kit
/**
* Simple CSS UI Kit
*/
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
@dziudek
dziudek / dabblet.css
Created March 29, 2012 14:38
Simple CSS UI Kit
/**
* Simple CSS UI Kit
*/
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
@dziudek
dziudek / dabblet.css
Created March 28, 2012 14:13
Rotating elements - list :)
/**
* Rotating elements - list :)
*/
ul {
margin:0;
padding:0;
}
ul li {
float:left;
@dziudek
dziudek / dabblet.css
Created March 28, 2012 13:55
Rotating elements :)
/**
* Rotating elements :)
*/
body > div {
background: #eee;
}
div > div {
width: 100px;
@dziudek
dziudek / dabblet.css
Created March 25, 2012 08:55
Method to place visual separator between table cell's without using additional HTML elements
/**
* Method to place visual separator between table cell's without using additional HTML elements
*/
body > div {
display:table;
width: 600px;
}
body > div > div {
@dziudek
dziudek / dabblet.css
Created March 21, 2012 11:08
Animated dots for pagination - with links
/**
* Animated dots for pagination - with links
*/
/* this implementation uses links instead of the :before pseudoelement */
ol {
list-style-type:none;
padding:0;
}
@dziudek
dziudek / dabblet.css
Created March 21, 2012 11:00
Animated dots for pagination
/**
* Animated dots for pagination
*/
ol {
list-style-type:none;
padding:0;
}
ol li {