File size: 1,546 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
body {
background-image: url("../asserts/images/background3.jpg");
/* background-size: 60%; */
background-size: cover;
}
.app {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
}
.app-nav {
padding: 5px 0px;
box-shadow: 0 1px 20px rgba(56, 40, 40, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
background: transparent;
box-shadow: none;
color: #fff;
display: inline-block;
font-size: 15px;
margin-left: 15px;
line-height: 36px;
margin-right: 8px;
padding: 0;
}
.app-boards-container {
flex: 1;
width: 100%;
overflow-x: auto;
overflow-y: auto;
height: 100%;
padding-top: 20px;
}
.app-boards {
width: fit-content;
padding: 0px 30px;
display: inline-flex;
gap: 30px;
height: 100%;
}
.app-boards-last {
flex-basis: 290px;
min-width: 290px;
}
.app-boards-add-board {
background-color: #fff;
color: #000;
border-radius: 10px;
box-shadow: 1px 1px 0 1px rgba(0, 0, 0, 0.12);
width: 100%;
text-align: center;
}
.app-boards-add-board-edit {
background-color: #fff;
border-radius: 10px;
padding: 10px;
}
/*
* scroll bar styling
*/
*::-webkit-scrollbar {
width: 12px;
}
/* Track */
*::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
*::-webkit-scrollbar-thumb {
background: #c4c4c4;
}
/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
background: rgb(217 215 215);
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(179, 174, 174, 0.5);
}
|