38 lines
637 B
CSS
38 lines
637 B
CSS
@font-face {
|
|
font-family: 'Gilroy';
|
|
font-weight: 600;
|
|
src: local('/fonts/Gilroy/gilroy-semibold.ttf'), url('/fonts/Gilroy/gilroy-semibold.ttf');
|
|
}
|
|
|
|
* {
|
|
font-family: 'Open Sans';
|
|
}
|
|
|
|
button {
|
|
transition: 0.1s !important;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-x: hidden;
|
|
background-color: #f4f3ff;
|
|
}
|
|
|
|
main {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.button_clean, .button_clean:hover, .button_clean:focus, .button_clean:active {
|
|
outline: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.d-inline-block {
|
|
display: inline-block;
|
|
}
|
|
|
|
.gilroy {
|
|
font-family: 'Gilroy';
|
|
} |