77 lines
1.1 KiB
SCSS
77 lines
1.1 KiB
SCSS
|
/* reset css start */
|
||
|
// @import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600&family=Roboto&display=swap");
|
||
|
|
||
|
html {
|
||
|
scroll-behavior: smooth;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Roboto", sans-serif;
|
||
|
font-size: 16px;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
font-weight: 400;
|
||
|
position: relative;
|
||
|
background-color: #0d0d31;
|
||
|
color: #bfbfbf;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
max-width: 100%;
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
ul,
|
||
|
ol {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
*:focus {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
button:focus {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
select {
|
||
|
padding: 10px 20px;
|
||
|
width: 100%;
|
||
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
||
|
cursor: pointer;
|
||
|
color: #ffffff;
|
||
|
background-color: #0d0d31;
|
||
|
height: 50px;
|
||
|
border-radius: 4px;
|
||
|
-webkit-border-radius: 4px;
|
||
|
-moz-border-radius: 4px;
|
||
|
-ms-border-radius: 4px;
|
||
|
-o-border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
min-height: 150px !important;
|
||
|
resize: none;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
span {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #ee005f;
|
||
|
}
|
||
|
|
||
|
/* reset css end */
|