66 lines
900 B
CSS
66 lines
900 B
CSS
/* Scripts/style.css */
|
|
:root {
|
|
--border: #ddd;
|
|
--bg: #fff;
|
|
--muted: #666;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
padding: 12px;
|
|
max-width: 900px;
|
|
margin: auto;
|
|
background: #fafafa;
|
|
}
|
|
|
|
h2 { margin: 8px 0 14px; }
|
|
|
|
.toolbar {
|
|
margin-bottom: 12px;
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.toolbar a {
|
|
text-decoration: none;
|
|
color: #0b5fff;
|
|
background: var(--bg);
|
|
padding: 6px 10px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.meta {
|
|
color: var(--muted);
|
|
margin: 10px 0 14px;
|
|
}
|
|
|
|
.card {
|
|
margin: 10px 0;
|
|
padding: 10px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
background: var(--bg);
|
|
}
|
|
|
|
.card .name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.card .actions {
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.card .actions a {
|
|
text-decoration: none;
|
|
color: #0b5fff;
|
|
}
|
|
|
|
.card img {
|
|
margin-top: 10px;
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 10px;
|
|
}
|