40 lines
737 B
CSS
40 lines
737 B
CSS
.container {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 10px;
|
|
padding-bottom: 1rem;
|
|
padding-top: 1rem;
|
|
position: fixed;
|
|
height: 82px;
|
|
width: 100%;
|
|
background: #101010;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.nav_menu, .active_nav_menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
line-height: 16.3px;
|
|
gap: 3px;
|
|
}
|
|
|
|
.countTasks {
|
|
position: absolute;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
right: 10%;
|
|
top: -10%;
|
|
background: #D92000;
|
|
}
|
|
|
|
.active_nav_menu span, .active_nav_menu img {
|
|
color: #42BB47;
|
|
} |