Skip to content

Commit 2d334c8

Browse files
authored
Refactor CSS styles in success.html
1 parent 5458d38 commit 2d334c8

File tree

1 file changed

+65
-8
lines changed

1 file changed

+65
-8
lines changed

docs/success.html

Lines changed: 65 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,71 @@
66
<title>Org-Only OAuth Consent Simulation – Training Success</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1">
88
<style>
9-
body { font-family: Segoe UI, Arial, sans-serif; background: #0F172A; color: #F9FAFB; margin: 0; }
10-
.container { max-width: 800px; margin: 40px auto; background: #1E293B; padding: 30px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
11-
h1 { color: #38BDF8; margin-bottom: 10px; }
12-
p { line-height: 1.6; font-size: 18px; }
13-
.alert { background: #F87171; color: #0F172A; padding: 12px; border-radius: 8px; font-weight: bold; margin: 20px 0; }
14-
ul { margin-top: 10px; padding-left: 20px; }
15-
li { margin-bottom: 8px; }
16-
footer { text-align: center; font-size: 14px; color: #94A3B8; margin-top: 40px; }
9+
body {
10+
font-family: "Segoe UI", Roboto, Arial, sans-serif;
11+
background: #0F172A;
12+
color: #F9FAFB;
13+
margin: 0;
14+
padding: 0;
15+
}
16+
header {
17+
background: #1E293B;
18+
padding: 20px;
19+
text-align: center;
20+
font-size: 24px;
21+
font-weight: bold;
22+
color: #38BDF8;
23+
}
24+
.container {
25+
max-width: 800px;
26+
margin: 40px auto;
27+
background: #1E293B;
28+
padding: 30px;
29+
border-radius: 12px;
30+
box-shadow: 0 8px 24px rgba(0,0,0,0.4);
31+
}
32+
h1 {
33+
color: #38BDF8;
34+
margin-bottom: 10px;
35+
}
36+
p {
37+
line-height: 1.6;
38+
font-size: 18px;
39+
}
40+
.alert {
41+
background: #F87171;
42+
color: #0F172A;
43+
padding: 12px;
44+
border-radius: 8px;
45+
font-weight: bold;
46+
margin: 20px 0;
47+
}
48+
ul {
49+
margin-top: 10px;
50+
padding-left: 20px;
51+
}
52+
li {
53+
margin-bottom: 8px;
54+
}
55+
footer {
56+
text-align: center;
57+
font-size: 14px;
58+
color: #94A3B8;
59+
margin-top: 40px;
60+
}
61+
.btn {
62+
display: inline-block;
63+
padding: 12px 20px;
64+
background: #38BDF8;
65+
color: #0F172A;
66+
font-weight: bold;
67+
text-decoration: none;
68+
border-radius: 8px;
69+
margin-top: 20px;
70+
}
71+
.btn:hover {
72+
background: #0EA5E9;
73+
}
1774
</style>
1875
</head>
1976
<body>

0 commit comments

Comments
 (0)