source: Dev/branches/jQueryUI/client/css/resetstyle.css @ 249

Last change on this file since 249 was 249, checked in by hendrikvanantwerpen, 13 years ago

This one's for Subversion, because it's so close...

First widget (stripped down sequencer).
Seperated client and server code in two direcotry trees.

File size: 1.3 KB
RevLine 
[249]1/*
2    Document   : resetstyle
3    Created on : 6-dec-2011, 14:10:40
4    Author     : Thijs Schipper
5    Description:    Reset object styling for cross-browser compatibility
6       
7*/
8
9/*
10   TODO customize this sample style
11   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
12*/
13
14/* http://meyerweb.com/eric/tools/css/reset/
15   v2.0 | 20110126
16   License: none (public domain)
17*/
18
19html, body, div, span, applet, object, iframe,
20h1, h2, h3, h4, h5, h6, p, blockquote, pre,
21a, abbr, acronym, address, big, cite, code,
22del, dfn, em, img, ins, kbd, q, s, samp,
23small, strike, strong, sub, sup, tt, var,
24b, u, i, center,
25dl, dt, dd, ol, ul, li,
26fieldset, form, label, legend,
27table, caption, tbody, tfoot, thead, tr, th, td,
28article, aside, canvas, details, embed,
29figure, figcaption, footer, header, hgroup,
30menu, nav, output, ruby, section, summary,
31time, mark, audio, video {
32        margin: 0;
33        padding: 0;
34        border: 0;
35        font-size: 100%;
36        font: inherit;
37        vertical-align: baseline;
38}
39/* HTML5 display-role reset for older browsers */
40article, aside, details, figcaption, figure,
41footer, header, hgroup, menu, nav, section {
42        display: block;
43}
44body {
45        line-height: 1;
46}
47ol, ul {
48        list-style: none;
49}
50blockquote, q {
51        quotes: none;
52}
53blockquote:before, blockquote:after,
54q:before, q:after {
55        content: '';
56        content: none;
57}
58table {
59        border-collapse: collapse;
60        border-spacing: 0;
61}
Note: See TracBrowser for help on using the repository browser.