Serenity Operating System
1/* 15.3.3 Flow content
2 * https://html.spec.whatwg.org/multipage/rendering.html#flow-content-3
3 */
4
5form {
6 margin-bottom: 1em;
7}
8
9/* 15.3.8 Tables
10 * https://html.spec.whatwg.org/multipage/rendering.html#tables-2
11 */
12
13table {
14 font-weight: initial;
15 font-style: initial;
16 font-variant: initial;
17 font-size: initial;
18 line-height: initial;
19 white-space: initial;
20 text-align: initial;
21}
22
23/* 15.3.10 Form controls
24 * https://html.spec.whatwg.org/multipage/rendering.html#form-controls
25 */
26
27input:not([type=image i]), textarea {
28 box-sizing: border-box;
29}
30
31/* 15.4.2 Images
32 * https://html.spec.whatwg.org/multipage/rendering.html#images-3
33 */
34
35img[align=left i] {
36 margin-right: 3px;
37}
38
39img[align=right i] {
40 margin-left: 3px;
41}