aboutsummaryrefslogtreecommitdiff
path: root/examples/template-demo/static
diff options
context:
space:
mode:
authorfrosty <frosty@illegalfirearms.store>2025-12-28 03:26:05 -0500
committerfrosty <frosty@illegalfirearms.store>2025-12-28 03:26:05 -0500
commit4af132cf6adeeeeb5d6764c378bec2d05cad042f (patch)
treee422cff2831424775ba5c20196064f94cbe1e5c3 /examples/template-demo/static
Migrated from GitHub
Diffstat (limited to 'examples/template-demo/static')
-rw-r--r--examples/template-demo/static/style.css67
1 files changed, 67 insertions, 0 deletions
diff --git a/examples/template-demo/static/style.css b/examples/template-demo/static/style.css
new file mode 100644
index 0000000..1faafe4
--- /dev/null
+++ b/examples/template-demo/static/style.css
@@ -0,0 +1,67 @@
+body {
+ font-family: sans-serif;
+ margin: 20px;
+ background-color: #f4f7f6;
+ color: #333;
+ line-height: 1.6;
+}
+
+.container {
+ max-width: 800px;
+ margin: 0 auto;
+ background-color: #ffffff;
+ padding: 30px;
+ border-radius: 12px;
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
+}
+
+h1,
+h2,
+h3 {
+ color: #2c3e50;
+ border-bottom: 2px solid #e0e0e0;
+ padding-bottom: 10px;
+ margin-top: 30px;
+}
+
+ul {
+ list-style-type: none;
+ padding: 0;
+}
+
+li {
+ background-color: #ecf0f1;
+ margin-bottom: 8px;
+ padding: 10px 15px;
+ border-radius: 8px;
+ display: flex;
+ align-items: center;
+}
+
+li:nth-child(odd) {
+ background-color: #e0e0e0;
+}
+
+.highlight {
+ font-weight: bold;
+ color: #2980b9;
+}
+
+.code-block {
+ background-color: #2c3e50;
+ color: #ecf0f1;
+ padding: 5px;
+ border-radius: 8px;
+ font-family: monospace;
+ overflow-x: auto;
+ margin-top: 15px;
+}
+
+.footer {
+ text-align: center;
+ margin-top: 40px;
+ padding-top: 20px;
+ border-top: 1px solid #e0e0e0;
+ color: #7f8c8d;
+ font-size: 0.9em;
+} \ No newline at end of file