Build-Test
This commit is contained in:
142
web/index.html
142
web/index.html
@@ -5,26 +5,128 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Virtuelle Zwischenablage</title>
|
||||
<style>
|
||||
:root { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif; }
|
||||
body { margin: 0; background: #0b0f19; color: #e6e6e6; }
|
||||
header { padding: 16px 20px; border-bottom: 1px solid #1f2637; position: sticky; top: 0; background: #0b0f19; z-index: 1; }
|
||||
h1 { margin: 0; font-size: 18px; }
|
||||
main { max-width: 900px; margin: 0 auto; padding: 20px; }
|
||||
.row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
|
||||
.grid { display: grid; gap: 12px; }
|
||||
input, textarea, select, button { background: #131a2a; border: 1px solid #22304d; color: #e6e6e6; border-radius: 10px; padding: 10px; font-size: 14px; }
|
||||
button { cursor: pointer; }
|
||||
button.primary { background: #3b82f6; border-color: #3b82f6; color: #fff; }
|
||||
.card { border: 1px solid #1f2637; background: #0f1524; border-radius: 14px; padding: 14px; }
|
||||
.list { display: grid; gap: 10px; }
|
||||
.clip { display: grid; gap: 6px; border: 1px solid #22304d; padding: 10px; border-radius: 12px; background: #0b1222; }
|
||||
.meta { color: #9aa6c6; font-size: 12px; display: flex; gap: 10px; align-items: center; }
|
||||
.actions { display: flex; gap: 8px; }
|
||||
.muted { color: #9aa6c6; }
|
||||
.inline { display: inline-flex; gap: 8px; align-items: center; }
|
||||
.pill { background: #14203a; border: 1px solid #22304d; padding: 2px 8px; border-radius: 999px; font-size: 12px; }
|
||||
a { color: #7cb2ff; text-decoration: none; }
|
||||
</style>
|
||||
:root {
|
||||
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
background: #f9fafb; /* sehr helles Grau statt fast Schwarz */
|
||||
color: #222; /* dunkle Schrift */
|
||||
}
|
||||
|
||||
header {
|
||||
padding: 16px 20px;
|
||||
border-bottom: 1px solid #e5e7eb; /* helles Grau */
|
||||
position: sticky;
|
||||
top: 0;
|
||||
background: #ffffff; /* weißer Header */
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
main {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.row {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr auto;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
input, textarea, select, button {
|
||||
background: #ffffff; /* weißer Hintergrund */
|
||||
border: 1px solid #d1d5db; /* hellgraue Umrandung */
|
||||
color: #111; /* dunkler Text */
|
||||
border-radius: 10px;
|
||||
padding: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
button.primary {
|
||||
background: #3b82f6; /* freundliches Blau */
|
||||
border-color: #3b82f6;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.card {
|
||||
border: 1px solid #e5e7eb;
|
||||
background: #ffffff; /* weiße Karten */
|
||||
border-radius: 14px;
|
||||
padding: 14px;
|
||||
box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* leichter Schatten */
|
||||
}
|
||||
|
||||
.list {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.clip {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
border: 1px solid #e5e7eb;
|
||||
padding: 10px;
|
||||
border-radius: 12px;
|
||||
background: #f3f4f6; /* hellgrauer Hintergrund */
|
||||
}
|
||||
|
||||
.meta {
|
||||
color: #6b7280; /* mittleres Grau */
|
||||
font-size: 12px;
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.muted {
|
||||
color: #6b7280;
|
||||
}
|
||||
|
||||
.inline {
|
||||
display: inline-flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.pill {
|
||||
background: #e5e7eb; /* graue Badge */
|
||||
border: 1px solid #d1d5db;
|
||||
padding: 2px 8px;
|
||||
border-radius: 999px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #2563eb; /* satteres Blau */
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
|
||||
Reference in New Issue
Block a user