]> git.plutz.net Git - cgilite/blob - common.css
markdown: avoid adding newlines to blockquote, css: style for blockquote
[cgilite] / common.css
1 /* ======= GENERIC HTML STYLES ======= */
2
3 * {
4   box-sizing: border-box;
5   position: relative;
6   font: inherit;
7   text-decoration: inherit;
8   color: inherit; background: transparent;
9   max-width: 100%;
10   margin: 0; padding: 0;
11   border: none;
12 }
13
14 body {
15   font: normal normal normal medium/1.5em sans-serif;
16   color: #000; background: #FFF;
17 }
18
19 ul, ol, dl, table, pre, p { margin-bottom: .5em; }
20 p:only-child { margin-bottom: 0; }
21
22 table {
23   max-width: 100%;
24   overflow-x: auto;
25 }
26 th, td { padding: .25em .75em; }
27
28 a {
29   font-style: italic;
30   text-decoration: underline;
31   color: #068;
32 }
33 a.button {
34   font-style: inherit;
35   text-decoration: inherit;
36   color: inherit;
37 }
38
39 sup { vertical-align: super; }
40 sub { vertical-align: sub; }
41 small { font-size: .75em; }
42 big   { font-size: 1.25em; }
43 strike, del, s { text-decoration: line-through; }
44 u {text-decoration: underline; }
45 i, em { font-style: italic; }
46 b, strong { font-weight: bolder; }
47 tt, code, var, samp, kbd { font-family: monospace; }
48 kbd { font-style: italic; }
49
50 blockquote {
51   background-color: #EEE;
52   margin: .5em 0;
53   padding: 1em 2em;
54   white-space: pre-line;
55 }
56
57 ul, ol { padding-left: 1.125em; }
58 dl dt { font-weight: bolder; }
59 table th { font-weight: bold; }
60
61 li p + ul, li p + ol {
62   margin-top: -.25em;
63 }
64
65 hr { border-bottom: 1pt solid; }
66
67 h1, h2, h3 {
68   font-weight: bold;
69   margin-top: .75em;
70   margin-bottom: .5em;
71 }
72
73 h4, h5, h6, form legend {
74   font-weight: bolder;
75   margin-bottom: .25em;
76 }
77
78 h1 { font-size: 1.5em; }
79 h2 { font-size: 1.125em; }
80
81 select, input, button, textarea, a.button {
82   display: inline-block;
83   color: #000; background-color: #FFF;
84   border: .5pt solid;
85   padding: .25em .75em;
86   vertical-align: text-bottom;
87   border: .5pt solid #000;
88   border-radius: 2pt;
89 }
90 select { padding: .375em 0; }
91 textarea { min-height: 7em; }
92
93 input[type=radio], input[type=checkbox] {
94   vertical-align: baseline;
95 }
96 input[type=number] { text-align: right; padding-right: 0; }
97
98 button, input[type=button], a.button {
99   box-shadow: .125em .125em .25em;
100   cursor: pointer;
101 }
102 input[type=radio], input[type=checkbox], label[for] {
103   cursor: pointer;
104 }
105
106 label { margin-right: .75em; }
107 input + label {
108   margin-left: .375em;
109 }
110
111 input.search + button.search {
112   width: 2.5em;
113   color: transparent;
114   background-color: #CCC;
115   margin-left: -2pt;
116   border-left: none;
117   border-radius: 0 2pt 2pt 0;
118   white-space: nowrap;
119 }
120 input.search + button.search:before {
121   content: '\1f50d';
122   color: #000;
123   font-weight: bold;
124 }
125
126 @media print {
127   @page { margin: 20mm; }
128
129   h1 { text-align: center; }
130
131   h1, h2, h3, h4, h5, h6, form legend {
132     page-break-inside: avoid;
133     page-break-after: avoid;
134     page-break-before: auto;
135   }
136   li { page-break-inside: avoid; }
137   th, dt { page-break-after: avoid; }
138 }
139
140 /* ======= End Generic Styles ======= */
141
142 /* ======= Common Styles ======= */
143
144 *[tooltip]:hover:after {
145   display: block;
146   position: absolute;
147   min-width: 12em;
148   bottom: 100%; left: 50%; transform: translate(-50%, 0);
149   content: attr(tooltip);
150   padding: .5em;
151   color: #000; background-color: #FFC;
152   border: .5pt solid;
153   z-index: 1;
154 }
155
156 input[type=radio].tab { display: none; }
157 input[type=radio].tab + label {
158   display: table-cell;
159   padding: .5em 1em;
160   color: #000; background-color: #EEE;
161   border: .5pt solid;
162 }
163 input[type=radio].tab:checked + label {
164   background-color: #FFF;
165   border-bottom: none;
166   box-shadow: .125em -.125em .125em #888;
167   z-index: 1;
168 }
169 input[type=radio].tab ~ *.tab {
170   display: none;
171   width: 100%;
172   margin-top: -.5pt; padding: .25em .75em;
173   border: .5pt solid;
174   border-radius: 0;
175   box-shadow: .125em .125em .125em #888;
176 }
177
178 /* ======= End Common Styles ======= */