mirror of
https://github.com/Nezumi-2711/loi-phan-internship.git
synced 2026-09-23 04:10:00 +00:00
Init project
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
@import "./base/reset.scss";
|
||||
Reference in New Issue
Block a user