Resources/Web/css/ohm_web.css
author moel.mich
Sun, 23 Sep 2012 18:37:43 +0000
changeset 380 573f1fff48b2
permissions -rw-r--r--
Fixed Issue 387. The new implementation does not try to start a ring 0 driver that already exists, but could not be opened. It tries to delete the driver and install it new. The driver is now stored temporarily in the application folder. The driver is not correctly removed on system shutdown.
moel@348
     1
body {
moel@348
     2
	font-size: 62.5%;
moel@348
     3
}
moel@348
     4
moel@348
     5
table
moel@348
     6
{
moel@348
     7
  border-collapse:collapse;
moel@348
     8
}
moel@348
     9
moel@348
    10
table, tr
moel@348
    11
{
moel@348
    12
 border: 1px solid #F0F0F0;
moel@348
    13
}
moel@348
    14
moel@348
    15
td
moel@348
    16
{
moel@348
    17
 padding-right:10px;
moel@348
    18
}
moel@348
    19
moel@348
    20
/* Site
moel@348
    21
   -------------------------------- */
moel@348
    22
moel@348
    23
body {
moel@348
    24
	font-family: "Trebuchet MS", "Helvetica", "Arial",  "Verdana", "sans-serif";
moel@348
    25
}
moel@348
    26
moel@348
    27
div.header {
moel@348
    28
	padding:12px;
moel@348
    29
	font-family: "Trebuchet MS", "Arial", "Helvetica", "Verdana", "sans-serif";
moel@348
    30
}
moel@348
    31
moel@348
    32
div.main {
moel@348
    33
	clear:both;
moel@348
    34
	padding:12px;
moel@348
    35
	font-family: "Trebuchet MS", "Arial", "Helvetica", "Verdana", "sans-serif";
moel@348
    36
	/*font-size: 1.3em;*/
moel@348
    37
	/*line-height: 1.4em;*/
moel@348
    38
}
moel@348
    39