configure htmlHint and stylelint to use tab indentation,

fix html and css linting issues
This commit is contained in:
Arthur Lu 2022-11-21 03:50:54 +00:00
parent eed39f580f
commit b24b1110f6
9 changed files with 383 additions and 390 deletions

View File

@ -1,4 +1,4 @@
{ {
"attr-value-not-empty": false, "attr-value-not-empty": false,
"space-tab-mixed-disabled": false "space-tab-mixed-disabled": "tab"
} }

View File

@ -1,4 +1,7 @@
{ {
"extends": "stylelint-config-standard", "extends": "stylelint-config-standard",
"ignore": ["inside-parens", "param", "value"] "ignore": ["inside-parens", "param", "value"],
"rules":{
"indentation": "tab"
}
} }

View File

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
@ -17,23 +17,14 @@
<link rel="stylesheet" href="./static/CreatePage.css" /> <link rel="stylesheet" href="./static/CreatePage.css" />
<link rel="icon" href="./assets/images/icons/favicon.ico"> <link rel="icon" href="./assets/images/icons/favicon.ico">
<script src="./assets/scripts/CreatePage.js" type="module"></script> <script src="./assets/scripts/CreatePage.js" type="module"></script>
</head>
</head> <body>
<body>
<input type="button" value="Home" id="home-btn" onclick="window.location.assign('./index.html')"> <input type="button" value="Home" id="home-btn" onclick="window.location.assign('./index.html')">
<div class ="Top-Bar"> <div class ="top-bar">
<img src ="./assets/images/icons/Logo.png" alt="logo" /> <img src ="./assets/images/icons/Logo.png" alt="logo" />
<h1> Food Journal </h1> <h1> Food Journal </h1>
<!-- </div>
<form id="form">
<input type='search' id="seaching" name="searchBar" placeholder="Search journal...">
<button class="click" type="search">
Search
</button>
</form>
--->
</div>
<div class="journal-form"> <div class="journal-form">
<h1>New Entry </h1> <h1>New Entry </h1>
@ -92,6 +83,6 @@
<button type="submit" id="save-btn" value="Submit">Save Review</button> <button type="submit" id="save-btn" value="Submit">Save Review</button>
</form> </form>
</div> </div>
</body> </body>
</html> </html>

View File

@ -1,6 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
@ -16,10 +16,9 @@
<!-- <link rel="stylesheet" href="/static/reset.css" /> --> <!-- <link rel="stylesheet" href="/static/reset.css" /> -->
<link rel="stylesheet" href="./static/ReviewDetails.css" /> <link rel="stylesheet" href="./static/ReviewDetails.css" />
<script src="assets/scripts/ReviewDetails.js" type="module"></script> <script src="assets/scripts/ReviewDetails.js" type="module"></script>
</head>
</head> <body>
<body> <div class ="top-bar">
<div class ="Top-Bar">
<img src ="./assets/images/icons/Logo.png" alt="logo" /> <img src ="./assets/images/icons/Logo.png" alt="logo" />
<h1 style="font-family:'Lucida Sans'"> Food Journal </h1> <h1 style="font-family:'Lucida Sans'"> Food Journal </h1>
@ -108,6 +107,6 @@
</fieldset> </fieldset>
<button type="submit" id="save-btn" value="Submit">Update Review</button> <button type="submit" id="save-btn" value="Submit">Update Review</button>
</form> </form>
</div>> </div>
</body> </body>
</html> </html>

View File

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
@ -15,8 +15,8 @@
<!-- <link rel="stylesheet" href="/static/reset.css" /> --> <!-- <link rel="stylesheet" href="/static/reset.css" /> -->
<link rel="stylesheet" href="./static/homepage.css" /> <link rel="stylesheet" href="./static/homepage.css" />
<script src="assets/scripts/main.js" type="module"></script> <script src="assets/scripts/main.js" type="module"></script>
</head> </head>
<main> <body>
<header> <header>
<div class="top-bar"> <div class="top-bar">
<img src ="./assets/images/icons/Logo.png" alt="logo" /> <img src ="./assets/images/icons/Logo.png" alt="logo" />
@ -24,36 +24,28 @@
<img src ="./assets/images/icons/Logo.png" alt="logo" /> <img src ="./assets/images/icons/Logo.png" alt="logo" />
</div> </div>
</header> </header>
<body> <main>
<!--
For mobile: + flex-direction: column-reverse;"
~ width: 100% for all divs
-->
<div class="body-container"> <div class="body-container">
<div style="width: 20%;"></div> <div style="width: 20%;"></div>
<div style="width: 60%;"> <div style="width: 60%;">
<div class="center-display"> <div class="center-display">
<img src ="./assets/images/icons/Grouppink.png" alt="CREATE" style="opacity: 100%;" id="create-btn" onclick="window.location.assign('./CreatePage.html')"></img> <img src ="./assets/images/icons/Grouppink.png" alt="CREATE" style="opacity: 100%;" id="create-btn" onclick="window.location.assign('./CreatePage.html')"/>
<h2 id="recent-reviews-text"> Recent Reviews </h2> <h2 id="recent-reviews-text"> Recent Reviews </h2>
<img src ="./assets/images/icons/Grouppink.png" style="opacity:0;"></img> <img src ="./assets/images/icons/Grouppink.png" style="opacity:0;"/>
</div> </div>
<div class="review-container" id="review-container"></div> <div class="review-container" id="review-container"></div>
</div> </div>
<div style="width: 20%;"> <div style="width: 20%;">
<form id="form"> <form id="form">
<input type='search' id="seaching" name="searchBar" placeholder="Search journal..."> <input type="search" id="seaching" name="searchBar" placeholder="Search journal...">
<button class="click" type="search"> <button class="click" type="search">
Search Search
</button> </button>
<div class="Filter-box"></div> <div class="Filter-box"></div>
</form> </form>
</div> </div>
</div> </div>
</main>
</body> </body>
</main>
</html> </html>

View File

@ -1,27 +1,30 @@
/* CreatePage.css */ /* CreatePage.css */
body{ body {
background-color: #13323b; background-color: #13323b;
} }
h1 { h1 {
text-align: center; text-align: center;
} }
.Top-Bar{
.top-bar {
margin-top: -8cm; margin-top: -8cm;
} }
.Top-Bar > img{
.top-bar > img {
position: relative; position: relative;
top: 7.85cm; top: 7.85cm;
} }
.Top-Bar > h1{
.top-bar > h1 {
position: relative; position: relative;
top: 2.2cm; top: 2.2cm;
font-size: 3cm; font-size: 3cm;
color: #EAA9BC color: #eaa9bc;
} }
.Top-Bar > form{
.top-bar > form {
position: relative; position: relative;
left: 32cm; left: 32cm;
} }
@ -32,7 +35,7 @@ h1 {
display: block; display: block;
margin: auto; margin: auto;
color: #ccb3bb; color: #ccb3bb;
border: 3px solid rgb(7, 0, 0); border: 3px solid rgb(7 0 0);
background-color: #b52754; background-color: #b52754;
} }

View File

@ -1,27 +1,30 @@
/* ReviewDetails.css */ /* ReviewDetails.css */
body{ body {
background-color: #13323b; background-color: #13323b;
} }
h1 { h1 {
text-align: center; text-align: center;
} }
.Top-Bar{
.top-bar {
margin-top: -8cm; margin-top: -8cm;
} }
.Top-Bar > img{
.top-bar > img {
position: relative; position: relative;
top: 7.85cm; top: 7.85cm;
} }
.Top-Bar > h1{
.top-bar > h1 {
position: relative; position: relative;
top: 2.2cm; top: 2.2cm;
font-size: 3cm; font-size: 3cm;
color: #EAA9BC color: #eaa9bc;
} }
.Top-Bar > form{
.top-bar > form {
position: relative; position: relative;
left: 32cm; left: 32cm;
} }
@ -32,7 +35,7 @@ h1 {
display: none; display: none;
margin: auto; margin: auto;
color: #ccb3bb; color: #ccb3bb;
border: 3px solid rgb(7, 0, 0); border: 3px solid rgb(7 0 0);
background-color: #b52754; background-color: #b52754;
} }
@ -41,7 +44,7 @@ h1 {
margin: left; margin: left;
width: 50%; width: 50%;
border: 3px; border: 3px;
color: rgb(228, 119, 119); color: rgb(228 119 119);
text-align: left; text-align: left;
} }

View File

@ -1,25 +1,27 @@
/* homepage.css */ /* homepage.css */
/* Color*/
body{ /* Color */
body {
background-color: #97a5bd; background-color: #97a5bd;
} }
.top-bar{ .top-bar {
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
.top-bar > img{
.top-bar > img {
position: relative; position: relative;
align-self: center; align-self: center;
padding-left: 2.5%; padding-left: 2.5%;
padding-right: 2.5%; padding-right: 2.5%;
} }
.top-bar > h1{
.top-bar > h1 {
position: relative; position: relative;
text-align: center; text-align: center;
color: #E4C3D2; color: #e4c3d2;
font-size: 6rem; font-size: 6rem;
font-family: 'Lucida Sans';
} }
.body-container { .body-container {
@ -35,10 +37,9 @@ body{
} }
#recent-reviews-text { #recent-reviews-text {
font-family: 'Lucida Sans';
text-align: center; text-align: center;
font-size: 4rem; font-size: 4rem;
color: #E4C3D2; color: #e4c3d2;
} }
img#create-btn { img#create-btn {
@ -48,13 +49,14 @@ img#create-btn {
padding-right: 2.5%; padding-right: 2.5%;
} }
.review-container{ .review-container {
display: flex; display: flex;
position: relative; position: relative;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: center; justify-content: center;
} }
.review-container > div { .review-container > div {
background-color: #f1f1f1; background-color: #f1f1f1;
text-align: center; text-align: center;
} }