_global.scss 1.62 KB
html {
    // scrollbar-color: #02377B transparent;
    // scrollbar-width: thin;
}

// ::-webkit-scrollbar {
//     width: 8px;
//     background-color: transparent;
// }

// ::-webkit-scrollbar-thumb {
//     background-color: #02377B;
//     border-radius: 8px;

//     @media (min-width: 1200px) {
//         background-color: rgba(#02377B, .5);
//     }
// }

// ::-webkit-scrollbar-thumb:hover {
//     @media (min-width: 1200px) {
//         background-color: rgba(#02377B, 1);
//     }
// }

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em; 
}



h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    display: block;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

button {
    padding: 0;
    border: none;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
}

.container {
	max-width: 1350px;
	padding: 0 15px;
	margin: 0 auto;
}

html,
body {
    height: 100%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-x: hidden;
}

main {
    flex: 1 1 auto;
}

input,
textarea {
    outline: transparent;
    &::placeholder {
        transition: .3s;
    }

    &:focus::placeholder {
        opacity: 0;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}