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

46 lines
659 B
CSS
Raw Normal View History

2023-02-22 16:20:07 +01:00
html, body {
font-size: 13px; /* this also defines the overall widget size as all sizes are in rem */
2023-02-27 00:23:11 +01:00
font-family: Noto Sans;
2023-02-19 17:13:33 +01:00
height: 100%;
width: 100%;
padding: 0;
2023-02-22 16:20:07 +01:00
margin: 0;
2023-02-19 17:13:33 +01:00
background-color: #e5e5e5;
}
h1 {
font-weight: 300 !important;
}
a {
color: #2196f3;
text-decoration: none;
}
a:hover, a:focus {
color: #0a6ebd;
text-decoration: underline;
}
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
}
.fade-enter-active,
.fade-leave-active {
2023-02-27 00:35:20 +01:00
transition: all 0.25s ease;
2023-02-27 00:33:07 +01:00
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
2023-02-27 00:35:20 +01:00
transform: scale(1.1);
2023-02-27 00:33:07 +01:00
}
.p-button {
font-family: Noto Sans !important;
}