Files
cloudron-box/dashboard/src/style.css
2025-01-16 17:31:36 +01:00

82 lines
1.1 KiB
CSS

html, body {
font-size: 13px; /* this also defines the overall widget size as all sizes are in rem */
font-family: Inter;
font-weight: 300;
height: 100%;
width: 100%;
padding: 0;
margin: 0;
background-color: white;
color: var(--pankow-text-color);
}
@media (prefers-color-scheme: dark) {
body {
background-color: black;
}
}
.shadow {
box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
#app {
height: 100%;
}
h2 {
font-weight: 400;
font-size: 24px;
}
a {
text-decoration: none;
color: var(--pankow-color-primary);
}
footer {
display: block;
width: 100%;
font-size: 10px;
text-align: center;
position: fixed;
bottom: 0;
}
footer > .p {
margin: 4px;
}
.content {
max-width: 1280px;
width: 100%;
margin-right: 10px;
}
.header {
margin-top: 50px;
padding-left: 15px;
padding-right: 15px;
}
.header-with-button {
display: flex;
justify-content: space-between;
align-items: center;
}
.slide-left-enter-active,
.slide-left-leave-active {
transition: all 0.25s ease-out;
}
.slide-left-enter-from {
opacity: 0;
transform: translateY(30px);
}
.slide-left-leave-to {
opacity: 0;
}