Skip to content

Commit b4de7a0

Browse files
authored
Restyle PoW page (#377)
* restyle pow page * update screenshot
1 parent 0a81de9 commit b4de7a0

File tree

4 files changed

+26
-17
lines changed

4 files changed

+26
-17
lines changed

public/logo.png

20.5 KB
Loading

public/stylesheets/style.css

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
2-
font-family: 'Courier New', Courier, monospace;
2+
font-family: Helvetica, Arial, sans-serif;
33
}
44

55
a {
@@ -9,32 +9,41 @@ a {
99
/* divs */
1010
.container {
1111
height: 100vh;
12-
width: fit-content;
12+
width: 300px;
1313
text-align: center;
1414
text-align: -moz-center;
1515
justify-content: center;
1616
margin: 0 auto;
1717
padding-top: 30vh;
1818
transition: all 0.5s;
19+
position: relative;
1920
}
20-
h1{
21-
margin-bottom:0px;
21+
h1 {
22+
margin-bottom: 0px;
2223
}
23-
.rayid{
24-
margin-top:0px;
25-
font-size:80%;
24+
.rayid {
25+
margin-top: 0px;
26+
font-size: 80%;
2627
}
2728
.submitting {
28-
display:none;
29+
display: none;
2930
}
3031
.success {
31-
display:none;
32+
display: none;
3233
}
3334
.failed {
34-
display:none;
35+
display: none;
3536
}
36-
.w30{
37-
width:30px;
37+
table{
38+
padding-left:20px;
39+
padding-right:20px;
40+
}
41+
.w-full {
42+
text-align:left;
43+
width: 100%;
44+
}
45+
.w30 {
46+
width: 30px;
3847
}
3948
.blink {
4049
animation: blinker 1s linear infinite;

screenshot.jpg

-39.5 KB
Loading

views/pow.pug

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ html
99
script(src='/javascripts/bundle.min.js')
1010
body
1111
.container
12-
h1 PoW Shield
12+
img(src='/logo.png' width='300px')
1313
p.rayid Ray ID: #{prefix}-#{difficulty}
1414
table
1515
tr.calculating
16-
td Calculating Nonce
16+
td.w-full Calculating Nonce
1717
td.w30.blink ...
1818
tr.submitting
19-
td Submitting Result
19+
td.w-full Submitting Result
2020
td.blink ...
2121
tr.success
22-
td Redirecting
22+
td.w-full Redirecting
2323
td.blink ...
2424
tr.failed
25-
td Failed, Retrying
25+
td.w-full Failed, Retrying
2626
td.blink ...
2727
script(src='/javascripts/main.min.js')
2828
script.

0 commit comments

Comments
 (0)