Initial commit: Memind H5 portal with MindSpace, Plaza, and agent jobs.
Track application source and tests; exclude local env, user workspaces, and runtime data via .gitignore. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
:root {
|
||||
color: #17221d;
|
||||
background: #f5f0e5;
|
||||
font-family: ui-sans-serif, system-ui, sans-serif;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.card {
|
||||
border: 1px solid #d6d0c3;
|
||||
border-radius: 16px;
|
||||
background: #fffdf7;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
border-radius: 999px;
|
||||
border: 1px solid #2f6f57;
|
||||
background: #2f6f57;
|
||||
color: white;
|
||||
padding: 8px 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn.secondary {
|
||||
background: transparent;
|
||||
color: #2f6f57;
|
||||
}
|
||||
|
||||
.btn.danger {
|
||||
border-color: #b42318;
|
||||
background: #b42318;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.warn {
|
||||
color: #b54708;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.alert {
|
||||
color: #b42318;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.layout {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
padding: 24px 16px 48px;
|
||||
}
|
||||
|
||||
.nav {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.nav a {
|
||||
padding: 8px 14px;
|
||||
border-radius: 999px;
|
||||
background: #ebe4d6;
|
||||
}
|
||||
|
||||
.nav a.active {
|
||||
background: #2f6f57;
|
||||
color: white;
|
||||
}
|
||||
Reference in New Issue
Block a user