Skip to content

Commit 058fd11

Browse files
committed
update styles
1 parent ac07ca6 commit 058fd11

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

source/Diol/src/applications/DiolBackendService/DiolBackendService.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackAsTool>true</PackAsTool>
1010
<ToolCommandName>DiolBackendService</ToolCommandName>
1111
<PackageId>DiolBackendService</PackageId>
12-
<Version>1.21.1</Version>
12+
<Version>1.21.2</Version>
1313
<Authors>Diol devs</Authors>
1414
<Company>Diol devs</Company>
1515
<PackageDescription>DiolBackendService provides DIOL logic without UX</PackageDescription>

source/Diol/src/applications/DiolBackendService/Pages/Index.cshtml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,54 @@
66
<html>
77
<head>
88
<title>Diol signal r client</title>
9+
<style>
10+
body {
11+
font-family: Arial, sans-serif;
12+
margin: 0;
13+
padding: 0;
14+
background-color: #f4f4f4;
15+
}
16+
section {
17+
margin: 20px;
18+
padding: 15px;
19+
background-color: white;
20+
border-radius: 8px;
21+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
22+
}
23+
h1, h2 {
24+
color: #333;
25+
}
26+
button {
27+
background-color: #007bff;
28+
color: white;
29+
border: none;
30+
padding: 10px 20px;
31+
margin: 10px 0;
32+
border-radius: 5px;
33+
cursor: pointer;
34+
}
35+
button:hover {
36+
background-color: #0056b3;
37+
}
38+
input[type="text"] {
39+
padding: 10px;
40+
margin: 10px 0;
41+
border: 1px solid #ddd;
42+
border-radius: 5px;
43+
}
44+
table {
45+
width: 100%;
46+
border-collapse: collapse;
47+
}
48+
th, td {
49+
text-align: left;
50+
padding: 8px;
51+
border-bottom: 1px solid #ddd;
52+
}
53+
th {
54+
background-color: #f0f0f0;
55+
}
56+
</style>
957
</head>
1058
<body>
1159

0 commit comments

Comments
 (0)