Files
cloudron-box/dashboard/src/style.css

97 lines
1.3 KiB
CSS
Raw Normal View History

2024-12-14 20:28:34 +01:00
2023-02-22 16:20:07 +01:00
html, body {
2025-01-17 12:24:48 +01:00
--pankow-color-primary: #0073cf;
font-size: 14px; /* this also defines the overall widget size as all sizes are in rem */
font-family: "Noto Sans";
2024-12-14 20:28:34 +01:00
font-weight: 300;
2023-02-19 17:13:33 +01:00
height: 100%;
width: 100%;
padding: 0;
2023-02-22 16:20:07 +01:00
margin: 0;
2024-12-14 12:52:39 +01:00
background-color: white;
2024-06-13 12:19:03 +02:00
color: var(--pankow-text-color);
2023-02-19 17:13:33 +01:00
}
@media (prefers-color-scheme: dark) {
body {
background-color: black;
}
}
2023-02-23 13:16:21 +01:00
.shadow {
box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
#app {
height: 100%;
2023-02-27 00:33:07 +01:00
}
2024-12-14 20:28:34 +01:00
h2 {
font-weight: 400;
2025-01-14 15:52:12 +01:00
font-size: 24px;
2024-12-14 20:28:34 +01:00
}
a {
text-decoration: none;
color: var(--pankow-color-primary);
}
2024-12-14 21:17:51 +01:00
footer {
display: block;
width: 100%;
font-size: 10px;
text-align: center;
position: fixed;
bottom: 0;
}
footer > .p {
margin: 4px;
}
2025-01-15 12:31:35 +01:00
2025-01-16 17:31:36 +01:00
.content {
max-width: 1280px;
width: 100%;
margin-right: 10px;
}
2025-01-16 12:24:15 +01:00
.header {
margin-top: 50px;
padding-left: 15px;
padding-right: 15px;
2025-01-16 12:24:15 +01:00
}
2025-01-15 12:31:35 +01:00
.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;
}
.pankow-table-header-column {
border-bottom-color: transparent;
}
.table-actions {
text-align: right;
visibility: hidden;
}
tr:hover .table-actions {
visibility: visible;
}