This commit is contained in:
Mathieu Lagace
2019-09-30 17:06:31 -04:00
parent d1ce6ba6da
commit 0166c48daa
38 changed files with 618 additions and 201 deletions

34
public/css/custom.css vendored
View File

@@ -2,6 +2,14 @@
margin-top: 50px;
}
.news-title {
height: 3.2rem;
}
.news-tags {
height: 1.5rem;
}
.news-body-small {
height: 15rem;
overflow: hidden;
@@ -53,6 +61,32 @@
height: 3rem;
overflow: hidden;
}
.autocomplete-items {
position: absolute;
border: 1px solid #d4d4d4;
border-bottom: none;
border-top: none;
z-index: 99;
/*position the autocomplete items to be the same width as the container:*/
top: 50%;
left: 0;
right: 0;
}
.autocomplete-items div {
padding: 10px;
cursor: pointer;
background-color: #fff;
border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
/*when hovering an item:*/
background-color: #e9e9e9;
}
.autocomplete-active {
/*when navigating through the items using the arrow keys:*/
background-color: DodgerBlue !important;
color: #ffffff;
}
@media only screen and (max-width: 800px) {
.calendar-container {