blob: 997fabc9e7db76ae2a16c4ed7f7ccb45df5033a0 [file] [log] [blame]
Philipp Wagner14a3fee2019-11-21 10:07:02 +00001/* Stylesheet for reggen HTML register output */
lowRISC Contributors802543a2019-08-31 12:12:56 +01002/* Copyright lowRISC contributors. */
Sam Elliott45fb1c62020-06-02 18:18:54 +01003/* Licensed under the Apache License, Version 2.0, see LICENSE for details. */
lowRISC Contributors802543a2019-08-31 12:12:56 +01004/* SPDX-License-Identifier: Apache-2.0 */
5
6table.regpic {
7 width: 95%;
8 border-collapse: collapse;
Rupert Swarbrickf2b230f2022-05-13 10:50:09 +01009 margin-left:auto;
lowRISC Contributors802543a2019-08-31 12:12:56 +010010 margin-right:auto;
11 table-layout:fixed;
12}
13
14table.regdef {
15 border: 1px solid black;
16 width: 80%;
17 border-collapse: collapse;
Rupert Swarbrickf2b230f2022-05-13 10:50:09 +010018 margin-left:auto;
lowRISC Contributors802543a2019-08-31 12:12:56 +010019 margin-right:auto;
20 table-layout:auto;
21}
22
23table.regdef th {
24 border: 1px solid black;
25 font-family: sans-serif;
26
27}
28
29td.bitnum {
30 font-size: 60%;
31 text-align: center;
32}
33
34td.unused {
35 border: 1px solid black;
36 background-color: gray;
37}
38
39td.fname {
40 border: 1px solid black;
41 text-align: center;
42 font-family: sans-serif;
43}
44
45
46td.regbits, td.regperm, td.regrv {
47 border: 1px solid black;
48 text-align: center;
49 font-family: sans-serif;
50}
51
52td.regde, td.regfn {
53 border: 1px solid black;
54}
55
56table.cfgtable {
57 border: 1px solid black;
58 width: 80%;
59 border-collapse: collapse;
60 margin-left:auto;
61 margin-right:auto;
62 table-layout:auto;
63}
64
65table.cfgtable th {
66 border: 1px solid black;
67 font-family: sans-serif;
68 font-weight: bold;
69}
70
71table.cfgtable td {
72 border: 1px solid black;
73 font-family: sans-serif;
74}