-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
108 lines (86 loc) · 1.56 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
html {
font-family: "Source Sans Pro", sans-serif;
line-height: 1.5;
}
body {
max-width: 60em;
margin: 0 auto;
padding: 20px;
}
h1 {
font-family: Raleway;
font-weight: normal;
border-bottom: 8px solid #3fa9f5;
}
h2 {
font-family: Raleway;
font-weight: normal;
border-bottom: 4px solid #7ac943;
}
svg {
transform: translate(0, 0); /* Forces whole pixel alignment on Firefox */
}
figure {
padding: 30px;
margin: 20px 0;
text-align: center;
}
figcaption {
margin: 10px 0 0;
font-style: italic;
font-size: 0.9em;
}
code {
background: #cccccc;
padding: 1px 3px 2px;
font-family: "Source Code Pro", monospace;
}
table {
margin: 30px 0;
text-align: left;
}
col.sender {
width: 11%;
}
col.rawmessage {
width: 52%;
}
.fullwidth {
width: 100%;
}
tr:nth-child(even) {
background-color: #eee;
}
tr.description {
background-color: #ccc;
text-align: center;
font-style: italic;
}
td, th {
padding: 2px 10px;
}
code.hexdatalen, code.shield, code.signfamily {
background: #ff75a8;
}
code.hexaddr, code.ground, code.signid {
background: #3fa9f5;
}
code.hexmsgtype, code.ledpower, code.signheight {
background: #7ac943;
}
code.hexdata, code.mainpower, code.signwidth {
background: #ff262e;
}
code.hexchksum, code.switchpower, code.signbits {
background: #ff931e;
}
code.rs485p, code.signpanel1 {
background: #c249b1;
}
code.rs485n, code.signpanel2 {
background: #f6e122;
}
.sidebyside {
display: flex;
justify-content: space-evenly;
}