Resources/Web/css/ohm_web.css
author moel.mich
Tue, 30 Dec 2014 22:47:39 +0000
changeset 431 0e46e3ca812a
permissions -rw-r--r--
Fixed the following issue (present only on 32-bit systems):

Version: 0.7.0.0

System.NullReferenceException: Object reference not set to an instance of an object.
at OpenHardwareMonitor.GUI.MainForm.timer_Tick(Object sender, EventArgs e)
at System.Windows.Forms.Timer.OnTick(EventArgs e)
at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

Common Language Runtime: 4.0.30319.18444
Operating System: Microsoft Windows NT 6.1.7601 Service Pack 1
Process Type: 32-Bit
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