sermon-notes/public/css/style.css
2024-05-13 21:09:41 -04:00

255 lines
3.7 KiB
CSS

/* Style for the 3-column layout */
body {
margin: 0;
}
.top-tab {
height: 50px;
width: 100%;
}
/* Style for hamburger menu */
.fa-check {
color: green;
}
.fa-bars:before,
.fa-navicon:before {
padding: 3px;
}
.inner {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: stretch;
align-content: flex-start;
max-width: 1020px;
/* Adjust to your desired width */
margin: 0 auto;
}
.ref-tab {
width: 60px;
padding-top: 65px !important;
}
.tab {
margin-bottom: 3px;
}
/**/
.tab button {
display: flex;
justify-content: center;
align-items: center;
height: 80px;
width: 100%;
text-align: center;
background-color: #f56a6a;
color: #fff !important;
border: none;
border-radius: 3px;
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
font-size: 14px;
margin-bottom: 3px;
}
.tab button:active {
background-color: #7a0016;
}
.activeRef {
background-color: #3e8e41 !important;
}
.ref-tab ul {
margin: 0;
padding: 0;
}
.ref-tab ul li {
list-style: none;
list-style-type: none;
}
.ref {
width: 35%;
}
.ref > div#ref {
vertical-align: top;
justify-content: start;
align-content: start;
overflow-y: scroll;
width: 100%;
height: 100%;
border: black solid 1px;
border-radius: 3px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
#passage {
width: 100px;
}
#newSpeaker {
display: none;
width: 110px;
}
#newSeries {
display: none;
width: 110px;
}
#noteSearch {
display: none;
}
#fields-container {
display: none;
}
.button {
top: 10px;
right: 20px;
font-size: 16px;
cursor: pointer;
background-color: #4CAF50;
/* green */
color: #fff;
/* white */
border: none;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
padding: 5px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition: all 0.3s ease-out;
}
.button:hover {
background-color: #3e8e41;
/* darker green */
}
.button::before {
font-size: 16px;
cursor: pointer;
}
.button::before {
font-size: 16px;
cursor: pointer;
transition: transform 0.5s ease-in-out;
}
.button:hover::before {
transform: translateY(-10px);
}
#fields-container.show {
display: block;
}
.notes {
width: 55%;
}
textarea#notes {
width: 100%;
height: 100%;
font-size: 14pt;
}
#notePreview {
display: none;
overflow-x: scroll;
}
#note-header-left {
display: inline-flex;
flex-direction: row;
width: 25%;
}
#note-header-right {
display: inline-flex;
flex-direction: row-reverse;
width: 74%;
}
#note-header-left h2.dirty {
color: darkorange;
}
#note-list {
display: none;
}
#note-list ul {
margin: 0;
padding: 0;
list-style-type: none;
list-style: none;
}
.noteListLinks {
cursor: pointer;
text-decoration: none;
color: purple;
font-weight: bold;
font-size: 16px;
}
div#refQuery {
display: none;
position: absolute;
z-index: 100;
background-color: rgba(0, 0, 0, 0.5);
width: 400px;
height: 200px;
}
div#refQuery #search {
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
line-height: 1.5;
color: #333;
background-color: #f4f4f4;
width: 150px;
height: 25px;
cursor: pointer;
}
#passage-popup {
display: none;
position: absolute;
z-index: 100;
background-color: #fff;
color: black;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
width: 300px;
height: 300px;
overflow-x: scroll;
}
#save-check {
opacity: 0;
text-align: right;
font-size: 20pt;
margin-top: 15px;
}
#fields-container input,
#fields-container select {
width: 19.5%;
display: inline-block;
}/*# sourceMappingURL=style.css.map */