Display monospace text with a light gray background.

[WIKI]
* NEW: Change website icon.
* NEW: Display monospace text with a light gray background.
This commit is contained in:
gambas 2021-01-26 22:34:02 +01:00
parent 85b963e304
commit 2365a748b8
3 changed files with 8 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -101,13 +101,12 @@ H1,H2 {
}
CODE {
/*background: #F0F0F0;*/
/*padding: 0px 1px;*/
background-color: #F4F4F4;
display: inline;
}
PRE {
/*background: #F0F0F0;*/
/*background-color: #F4F4F4;*/
display: inline-block;
padding-left: 0.5em;
margin: 0px;

View file

@ -23,7 +23,7 @@ Public Sub Render()
If sDate Then Try dDate = Date(CInt(Mid$(sDate, 5, 4)), CInt(Mid$(sDate, 3, 2)), CInt(Mid$(sDate, 1, 2)))
If IsNull(dDate) Then dDate = Date()
hImage = New Image(1440, 128, Color.White)
hImage = New Image(1440, 256, Color.White)
Cairo.Begin(hImage)
Cairo.AntiAlias = Cairo.AntiAliasNone
@ -38,8 +38,8 @@ Public Sub Render()
aStat.Read(hFile)
Close #hFile
For I = 0 To aStat.Max
H = Min(128, (aStat[I] * 10) \ 60)
If H > 0 Then hImage.FillRect(I, 128 - H, 1, H, &HA0D0FF&)
H = Min(256, (aStat[I] * 5) \ 60)
If H > 0 Then hImage.FillRect(I, 256 - H, 1, H, &HA0D0FF&)
'DH = aStat[I] Mod 10
'If DH > 0 Then hImage[I, 127 - H] = Color.SetAlpha(&HA0D0FF&, Max(0, 255 - DH * 10))
Next
@ -73,7 +73,7 @@ Public Sub Render()
Cairo.MoveTo(4, I + 8)
Cairo.DrawText(CStr(H) & "0 req./s")
Endif
I -= 100
I -= 50
Inc H
Wend
@ -87,12 +87,12 @@ Public Sub Render()
Cairo.MoveTo(0, I)
Cairo.LineTo(1440, I)
Cairo.Stroke
I -= 100
I -= 50
Wend
For I = 0 To 23
Cairo.MoveTo(I * 60, 0)
Cairo.LineTo(I * 60, 255)
Cairo.LineTo(I * 60, hImage.H)
Cairo.Stroke
Next