196 lines
No EOL
2.5 KiB
CSS
196 lines
No EOL
2.5 KiB
CSS
body {
|
|
margin: 0;
|
|
font-family: Segoe UI, Arial, sans-serif;
|
|
background: #f4f6f8;
|
|
color: #333;
|
|
}
|
|
|
|
.header {
|
|
background: #ff6200;
|
|
color: white;
|
|
padding: 15px 30px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: relative;
|
|
overflow: visible;
|
|
}
|
|
|
|
.header-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.logo-ing {
|
|
height: 60px;
|
|
}
|
|
|
|
.logo-hintergasse {
|
|
height: 80px;
|
|
transform: scale(3);
|
|
transform-origin: right center;
|
|
}
|
|
|
|
.title {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.navbar {
|
|
background: #202020;
|
|
padding: 12px 30px;
|
|
}
|
|
|
|
.navbar a {
|
|
color: white;
|
|
text-decoration: none;
|
|
margin-right: 25px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.navbar a:hover {
|
|
color: #ff6200;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1400px;
|
|
margin: 25px auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 20px;
|
|
}
|
|
|
|
.card {
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: 20px;
|
|
box-shadow: 0 3px 10px rgba(0,0,0,.1);
|
|
}
|
|
|
|
.card h2 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.card form {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
input[type=text] {
|
|
padding: 8px;
|
|
width: 80px;
|
|
}
|
|
|
|
button {
|
|
background: #ff6200;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 18px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background: #e35700;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 30px;
|
|
text-align: center;
|
|
color: #888;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.category-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.category-table th {
|
|
background: #ff6200;
|
|
color: white;
|
|
text-align: left;
|
|
padding: 12px;
|
|
}
|
|
|
|
.category-table td {
|
|
padding: 12px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.category-table tr:hover {
|
|
background: #f8f8f8;
|
|
}
|
|
|
|
.action-link {
|
|
color: #0066cc;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.action-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.delete-link {
|
|
color: #cc0000;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.delete-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
|
|
background: #ff6200;
|
|
color: white;
|
|
|
|
border-radius: 20px;
|
|
|
|
padding: 8px 14px;
|
|
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.tag a {
|
|
color: white;
|
|
text-decoration: none;
|
|
|
|
margin-left: 10px;
|
|
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.tag a:hover {
|
|
color: #202020;
|
|
}
|
|
|
|
.transaction-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.transaction-table td {
|
|
padding: 6px;
|
|
border-bottom: 1px solid #eee;
|
|
} |