52 lines
845 B
CSS
52 lines
845 B
CSS
body {
|
|
padding: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
th, td {
|
|
text-align: left;
|
|
}
|
|
|
|
.account-balance {
|
|
font-size: 1.5em;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 20px;
|
|
background-color: #f8f9fa;
|
|
padding: 20px;
|
|
border-top: 1px solid #e7e7e7;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.container {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
a[rel="me"] {
|
|
display: none;
|
|
}
|
|
.header-content {
|
|
display: flex;
|
|
justify-content: flex-end; /* Zarovnává obsah horizontálně na konec */
|
|
align-items: center; /* Zarovnává obsah vertikálně na střed */
|
|
width: 70%; /* Zajistí, že div zabere celou šířku */
|
|
}
|
|
|
|
.dropdown {
|
|
margin-top: 20px; /* Odsazení od horní části */
|
|
}
|
|
|