blob: c2fbc494dcc422c5370c54843bfa9c0b27b11fd9 (
plain)
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
|
@import "reset-to-defaults.css";
* {
color: transparent;
}
.notebook.frame,
.notebook.header.frame {
border: 1px solid tomato;
}
.reference.notebook.frame.bottom {
border-bottom-style: none;
}
.reference.notebook.header.frame.bottom {
border-top-style: none;
border-bottom-style: solid;
}
.test.notebook.frame.top {
border-top-style: none;
}
.test.notebook.header.frame.top {
border-top-style: solid;
border-bottom-style: none;
}
|