mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2024-11-12 22:16:16 +00:00
configure htmlHint and stylelint to use tab indentation,
fix html and css linting issues
This commit is contained in:
parent
eed39f580f
commit
b24b1110f6
@ -1,4 +1,4 @@
|
||||
{
|
||||
"attr-value-not-empty": false,
|
||||
"space-tab-mixed-disabled": false
|
||||
"space-tab-mixed-disabled": "tab"
|
||||
}
|
||||
|
@ -1,4 +1,7 @@
|
||||
{
|
||||
"extends": "stylelint-config-standard",
|
||||
"ignore": ["inside-parens", "param", "value"]
|
||||
"ignore": ["inside-parens", "param", "value"],
|
||||
"rules":{
|
||||
"indentation": "tab"
|
||||
}
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
@ -17,23 +17,14 @@
|
||||
<link rel="stylesheet" href="./static/CreatePage.css" />
|
||||
<link rel="icon" href="./assets/images/icons/favicon.ico">
|
||||
<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')">
|
||||
<div class ="Top-Bar">
|
||||
<div class ="top-bar">
|
||||
<img src ="./assets/images/icons/Logo.png" alt="logo" />
|
||||
<h1> Food Journal </h1>
|
||||
<!--
|
||||
<form id="form">
|
||||
<input type='search' id="seaching" name="searchBar" placeholder="Search journal...">
|
||||
<button class="click" type="search">
|
||||
Search
|
||||
</button>
|
||||
</form>
|
||||
--->
|
||||
</div>
|
||||
</div>
|
||||
<div class="journal-form">
|
||||
<h1>New Entry </h1>
|
||||
|
||||
@ -92,6 +83,6 @@
|
||||
<button type="submit" id="save-btn" value="Submit">Save Review</button>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<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/ReviewDetails.css" />
|
||||
<script src="assets/scripts/ReviewDetails.js" type="module"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class ="Top-Bar">
|
||||
</head>
|
||||
<body>
|
||||
<div class ="top-bar">
|
||||
<img src ="./assets/images/icons/Logo.png" alt="logo" />
|
||||
<h1 style="font-family:'Lucida Sans'"> Food Journal </h1>
|
||||
|
||||
@ -108,6 +107,6 @@
|
||||
</fieldset>
|
||||
<button type="submit" id="save-btn" value="Submit">Update Review</button>
|
||||
</form>
|
||||
</div>>
|
||||
</body>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<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/homepage.css" />
|
||||
<script src="assets/scripts/main.js" type="module"></script>
|
||||
</head>
|
||||
<main>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="top-bar">
|
||||
<img src ="./assets/images/icons/Logo.png" alt="logo" />
|
||||
@ -24,36 +24,28 @@
|
||||
<img src ="./assets/images/icons/Logo.png" alt="logo" />
|
||||
</div>
|
||||
</header>
|
||||
<body>
|
||||
|
||||
<!--
|
||||
For mobile: + flex-direction: column-reverse;"
|
||||
~ width: 100% for all divs
|
||||
-->
|
||||
<main>
|
||||
<div class="body-container">
|
||||
<div style="width: 20%;"></div>
|
||||
|
||||
<div style="width: 60%;">
|
||||
<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>
|
||||
<img src ="./assets/images/icons/Grouppink.png" style="opacity:0;"></img>
|
||||
<img src ="./assets/images/icons/Grouppink.png" style="opacity:0;"/>
|
||||
</div>
|
||||
|
||||
<div class="review-container" id="review-container"></div>
|
||||
</div>
|
||||
|
||||
<div style="width: 20%;">
|
||||
<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">
|
||||
Search
|
||||
</button>
|
||||
<div class="Filter-box"></div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</main>
|
||||
</html>
|
||||
|
@ -1,27 +1,30 @@
|
||||
/* CreatePage.css */
|
||||
|
||||
body{
|
||||
body {
|
||||
background-color: #13323b;
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
.Top-Bar{
|
||||
|
||||
.top-bar {
|
||||
margin-top: -8cm;
|
||||
}
|
||||
.Top-Bar > img{
|
||||
|
||||
.top-bar > img {
|
||||
position: relative;
|
||||
top: 7.85cm;
|
||||
}
|
||||
.Top-Bar > h1{
|
||||
|
||||
.top-bar > h1 {
|
||||
position: relative;
|
||||
top: 2.2cm;
|
||||
font-size: 3cm;
|
||||
color: #EAA9BC
|
||||
|
||||
color: #eaa9bc;
|
||||
}
|
||||
.Top-Bar > form{
|
||||
|
||||
.top-bar > form {
|
||||
position: relative;
|
||||
left: 32cm;
|
||||
}
|
||||
@ -32,7 +35,7 @@ h1 {
|
||||
display: block;
|
||||
margin: auto;
|
||||
color: #ccb3bb;
|
||||
border: 3px solid rgb(7, 0, 0);
|
||||
border: 3px solid rgb(7 0 0);
|
||||
background-color: #b52754;
|
||||
}
|
||||
|
||||
|
@ -1,27 +1,30 @@
|
||||
/* ReviewDetails.css */
|
||||
|
||||
body{
|
||||
body {
|
||||
background-color: #13323b;
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
.Top-Bar{
|
||||
|
||||
.top-bar {
|
||||
margin-top: -8cm;
|
||||
}
|
||||
.Top-Bar > img{
|
||||
|
||||
.top-bar > img {
|
||||
position: relative;
|
||||
top: 7.85cm;
|
||||
}
|
||||
.Top-Bar > h1{
|
||||
|
||||
.top-bar > h1 {
|
||||
position: relative;
|
||||
top: 2.2cm;
|
||||
font-size: 3cm;
|
||||
color: #EAA9BC
|
||||
|
||||
color: #eaa9bc;
|
||||
}
|
||||
.Top-Bar > form{
|
||||
|
||||
.top-bar > form {
|
||||
position: relative;
|
||||
left: 32cm;
|
||||
}
|
||||
@ -32,7 +35,7 @@ h1 {
|
||||
display: none;
|
||||
margin: auto;
|
||||
color: #ccb3bb;
|
||||
border: 3px solid rgb(7, 0, 0);
|
||||
border: 3px solid rgb(7 0 0);
|
||||
background-color: #b52754;
|
||||
}
|
||||
|
||||
@ -41,7 +44,7 @@ h1 {
|
||||
margin: left;
|
||||
width: 50%;
|
||||
border: 3px;
|
||||
color: rgb(228, 119, 119);
|
||||
color: rgb(228 119 119);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
@ -1,25 +1,27 @@
|
||||
/* homepage.css */
|
||||
/* Color*/
|
||||
body{
|
||||
|
||||
/* Color */
|
||||
body {
|
||||
background-color: #97a5bd;
|
||||
}
|
||||
|
||||
.top-bar{
|
||||
.top-bar {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
.top-bar > img{
|
||||
|
||||
.top-bar > img {
|
||||
position: relative;
|
||||
align-self: center;
|
||||
padding-left: 2.5%;
|
||||
padding-right: 2.5%;
|
||||
}
|
||||
.top-bar > h1{
|
||||
|
||||
.top-bar > h1 {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
color: #E4C3D2;
|
||||
color: #e4c3d2;
|
||||
font-size: 6rem;
|
||||
font-family: 'Lucida Sans';
|
||||
}
|
||||
|
||||
.body-container {
|
||||
@ -35,10 +37,9 @@ body{
|
||||
}
|
||||
|
||||
#recent-reviews-text {
|
||||
font-family: 'Lucida Sans';
|
||||
text-align: center;
|
||||
font-size: 4rem;
|
||||
color: #E4C3D2;
|
||||
color: #e4c3d2;
|
||||
}
|
||||
|
||||
img#create-btn {
|
||||
@ -48,13 +49,14 @@ img#create-btn {
|
||||
padding-right: 2.5%;
|
||||
}
|
||||
|
||||
.review-container{
|
||||
.review-container {
|
||||
display: flex;
|
||||
position: relative;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.review-container > div {
|
||||
background-color: #f1f1f1;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user