27 lines
893 B
CSS
27 lines
893 B
CSS
/* шрифт для лого */
|
|
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
|
|
/*@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap');*/
|
|
/*@import url('https://fonts.googleapis.com/css2?family=Kurale&display=swap');*/
|
|
|
|
/* НАВИГАЦИЯ */
|
|
.navbar {
|
|
background: rgb(111,66,193);
|
|
background: linear-gradient(11deg, rgba(111,66,193,1) 15%, rgba(152,66,193,0.7) 70%);
|
|
height: 75px;
|
|
}
|
|
.navbar > div.container-fluid > a.navbar-brand {
|
|
font-family: "Lobster", sans-serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-size: 11pt;
|
|
color: #fff;
|
|
}
|
|
|
|
.modal {
|
|
background: rgb(33, 20, 56);
|
|
background: linear-gradient(11deg, rgb(33, 20, 56, 1) 15%, rgba(49, 22, 64, 0.6) 70%);
|
|
}
|
|
.modal > .modal-dialog > .modal-content .modal-header,
|
|
.modal > .modal-dialog > .modal-content .modal-footer {
|
|
background: whitesmoke;
|
|
} |