Init project

This commit is contained in:
2023-07-13 16:53:06 +07:00
parent 3c40ecb572
commit 7ae1f6af5c
6 changed files with 4040 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
doctype html
html(lang="en")
head
meta(charset="UTF-8")
meta(name="viewport", content="width=device-width, initial-scale=1.0")
link(rel="stylesheet", href="./sass/main.scss")
title Food Hut
body
@@ -0,0 +1,54 @@
$background-color_1: transparent;
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font: inherit;
&:before {
box-sizing: border-box;
}
&:after {
box-sizing: border-box;
}
}
img {
display: block;
max-width: 100%;
}
picture {
display: block;
max-width: 100%;
}
svg {
display: block;
max-width: 100%;
}
video {
display: block;
max-width: 100%;
}
input {
background-color: $background-color_1;
outline: none;
}
select {
background-color: $background-color_1;
outline: none;
}
textarea {
background-color: $background-color_1;
outline: none;
}
button {
cursor: pointer;
background-color: $background-color_1;
outline: none;
border: 0;
}
body {
min-height: 100vh;
font-weight: 400;
font-size: 16px;
line-height: 1;
}
+1
View File
@@ -0,0 +1 @@
@import "./base/reset.scss";