86 lines
1.4 KiB
CSS
86 lines
1.4 KiB
CSS
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Inter', sans-serif;
|
|
color: #000;
|
|
}
|
|
|
|
button{
|
|
cursor: pointer;
|
|
border: 0;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
a{
|
|
text-decoration: none;
|
|
}
|
|
|
|
main{
|
|
margin: 0 5% 0 5%;
|
|
}
|
|
|
|
.horizontalLine{
|
|
width: 100%;
|
|
height: 1px;
|
|
background-color: #CCC;
|
|
}
|
|
|
|
/*Кнопки выбора страницы*/
|
|
.btnSection{
|
|
display: flex;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
/*Кнопка "Показать весь список*/
|
|
.allBtn{
|
|
width: 208px;
|
|
height: 32px;
|
|
background-color: #fff;
|
|
border: 1px solid #ccc;
|
|
border-radius: 12px;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/*Кнопки переключения страниц*/
|
|
.choiceBtn{
|
|
display: flex;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
/*Кнопки "предыдущая" и "следующая"*/
|
|
.btnPrevious, .btnNext {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 20px;
|
|
background: #fff;
|
|
box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.btnNext{
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.pageBtn{
|
|
width: 36px;
|
|
height: 36px;
|
|
margin-left: 10px;
|
|
background: #D9D9D9;
|
|
border-radius: 12px;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.activePage{
|
|
border: 2px solid #175FA9;
|
|
background-color: #fff;
|
|
color: #175FA9;
|
|
} |