tududi/public/css/app.css
2023-11-20 12:42:47 +02:00

107 lines
1.3 KiB
CSS

body {
font-family: 'Poppins', sans-serif;
font-size: 0.85rem;
background: #f8f8f8;
}
h1 {
font-size: 1.875rem;
}
h2 {
font-size: 1.625rem;
}
h3 {
font-size: 1.375rem;
}
h4 {
font-size: 1.125rem;
}
h5 {
font-size: 0.925rem;
}
h6 {
font-size: 0.825rem;
}
.dropdown-menu,
.btn,
.form-control,
.form-select {
font-size: 0.85rem;
padding: .375rem .75rem;
}
.btn-lg {
font-size: 0.95rem;
padding: .5rem 1rem;
}
.btn-sm {
font-size: 0.75rem;
padding: .25rem .5rem;
}
.task-item:hover {
cursor: pointer;
}
/* sidebar */
.area-item .area-options {
visibility: hidden;
opacity: 0;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.area-item:hover .area-options {
visibility: visible;
opacity: 1;
}
.fixed-sidebar {
position: fixed;
top: 0;
left: 0;
height: 100vh;
overflow-y: auto;
}
/* main */
.main-content {
margin-left: 300px;
background: transparent;
}
.login-content {
margin-left: 200px;
}
/* sidebar */
.sidebar {
background: #ececec;
}
/* tasks, notes */
.task-item:hover, .note-item:hover {
background: #fafafa !important;
}
/* task form */
#task_name::placeholder {
color: #ccc;
opacity: 1; /* Firefox */
}
/* note form */
.no-focus-outline textarea:focus,
.no-focus-outline textarea:-moz-focusring {
outline: none !important;
}