Skip to content

Commit 5dffa71

Browse files
committed
Update demo page
1 parent 76a7858 commit 5dffa71

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

static/index.html

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,31 @@
22
<head>
33
<meta charset="UTF-8" />
44
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
5-
<title>Document</title>
5+
<title>Success</title>
66
<style>
7+
* {
8+
box-sizing: border-box;
9+
}
710
html,
811
body {
912
display: grid;
13+
justify-content: start;
1014
gap: 1rem;
1115
background: #d0d5e2;
1216
color: #0a0d15;
1317
padding: 1rem;
1418
margin: 0;
15-
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans,
16-
Droid Sans, Helvetica Neue, sans-serif;
17-
}
18-
* {
19-
box-sizing: border-box;
19+
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
20+
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
2021
}
2122
a {
2223
color: inherit;
2324
text-decoration: none;
2425
}
26+
a:hover {
27+
color: gold;
28+
text-decoration: underline;
29+
}
2530
</style>
2631
</head>
2732
<body>

static/user/index.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@
22
<head>
33
<meta charset="UTF-8" />
44
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
5-
<title>Document</title>
5+
<title>User Details</title>
66
<style>
7+
* {
8+
box-sizing: border-box;
9+
}
710
html,
811
body {
912
display: grid;
13+
justify-content: start;
1014
gap: 1rem;
1115
background: #d0d5e2;
1216
color: #0a0d15;
1317
padding: 1rem;
1418
margin: 0;
15-
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans,
16-
Droid Sans, Helvetica Neue, sans-serif;
17-
}
18-
* {
19-
box-sizing: border-box;
19+
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
20+
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
2021
}
2122
</style>
2223
</head>

0 commit comments

Comments
 (0)