1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* This CSS file holds the default implementations for all of fossil's
CSS classes. When /style.css is requested, the rules in this file
are emitted first, followed by (1) page-specific CSS (if any) and
(2) skin-specific CSS.
*/
body {
z-index: 0 /* part of robot.c:robot_proofofwork() */;
}
div.sidebox {
float: right;
background-color: white;
border-width: medium;
border-style: double;
margin: 10px;
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* This CSS file holds the default implementations for all of fossil's
CSS classes. When /style.css is requested, the rules in this file
are emitted first, followed by (1) page-specific CSS (if any) and
(2) skin-specific CSS.
*/
body {
z-index: 0 /* Used by robot.c:robot_proofofwork() and href.js */;
}
div.sidebox {
float: right;
background-color: white;
border-width: medium;
border-style: double;
margin: 10px;
|