~andreserl/maas/packaging_precise_rebase

« back to all changes in this revision

Viewing changes to debian/extras/jslibs/yui/cssbase/base.css

  • Committer: Andres Rodriguez
  • Date: 2013-03-20 18:12:30 UTC
  • mfrom: (145.2.22 precise.sru)
  • Revision ID: andreserl@ubuntu.com-20130320181230-6l5guc0nhlv2z4p7
Re-base againts latest quantal released branch towards SRU

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
YUI 3.5.1 (build 22)
 
3
Copyright 2012 Yahoo! Inc. All rights reserved.
 
4
Licensed under the BSD License.
 
5
http://yuilibrary.com/license/
 
6
*/
 
7
/* base.css, part of YUI's CSS Foundation */
 
8
h1 {
 
9
        /*18px via YUI Fonts CSS foundation*/
 
10
        font-size:138.5%;  
 
11
}
 
12
h2 {
 
13
        /*16px via YUI Fonts CSS foundation*/
 
14
        font-size:123.1%; 
 
15
}
 
16
h3 {
 
17
        /*14px via YUI Fonts CSS foundation*/
 
18
        font-size:108%;  
 
19
}
 
20
h1,h2,h3 {
 
21
        /* top & bottom margin based on font size */
 
22
        margin:1em 0;
 
23
}
 
24
h1,h2,h3,h4,h5,h6,strong {
 
25
        /*bringing boldness back to headers and the strong element*/
 
26
        font-weight:bold; 
 
27
}
 
28
abbr,acronym {
 
29
        /*indicating to users that more info is available */
 
30
        border-bottom:1px dotted #000;
 
31
        cursor:help;
 
32
 
33
em {
 
34
        /*bringing italics back to the em element*/
 
35
        font-style:italic;
 
36
}
 
37
blockquote,ul,ol,dl {
 
38
        /*giving blockquotes and lists room to breath*/
 
39
        margin:1em;
 
40
}
 
41
ol,ul,dl {
 
42
        /*bringing lists on to the page with breathing room */
 
43
        margin-left:2em;
 
44
}
 
45
ol {
 
46
        /*giving OL's LIs generated numbers*/
 
47
        list-style: decimal outside;    
 
48
}
 
49
ul {
 
50
        /*giving UL's LIs generated disc markers*/
 
51
        list-style: disc outside;
 
52
}
 
53
dl dd {
 
54
        /*providing spacing for definition terms*/
 
55
        margin-left:1em;
 
56
}
 
57
th,td {
 
58
        /*borders and padding to make the table readable*/
 
59
        border:1px solid #000;
 
60
        padding:.5em;
 
61
}
 
62
th {
 
63
        /*distinguishing table headers from data cells*/
 
64
        font-weight:bold;
 
65
        text-align:center;
 
66
}
 
67
caption {
 
68
        /*coordinated margin to match cell's padding*/
 
69
        margin-bottom:.5em;
 
70
        /*centered so it doesn't blend in to other content*/
 
71
        text-align:center;
 
72
}
 
73
p,fieldset,table,pre {
 
74
        /*so things don't run into each other*/
 
75
        margin-bottom:1em;
 
76
}
 
77
/* setting a consistent width, 160px; 
 
78
   control of type=file still not possible */
 
79
input[type=text],input[type=password],textarea{width:12.25em;*width:11.9em;}
 
80
/* YUI CSS Detection Stamp */
 
81
#yui3-css-stamp.cssbase { display: none; }