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,60 +1,62 @@
/* homepage.css */
/* Color*/
body{
background-color: #97a5bd;
/* Color */
body {
background-color: #97a5bd;
}
.top-bar{
display: flex;
justify-content: center;
.top-bar {
display: flex;
justify-content: center;
}
.top-bar > img{
position: relative;
align-self: center;
padding-left: 2.5%;
padding-right: 2.5%;
.top-bar > img {
position: relative;
align-self: center;
padding-left: 2.5%;
padding-right: 2.5%;
}
.top-bar > h1{
position: relative;
text-align: center;
color: #E4C3D2;
font-size: 6rem;
font-family: 'Lucida Sans';
.top-bar > h1 {
position: relative;
text-align: center;
color: #e4c3d2;
font-size: 6rem;
}
.body-container {
display: flex;
max-height: 100%;
display: flex;
max-height: 100%;
}
.center-display {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
#recent-reviews-text {
font-family: 'Lucida Sans';
text-align: center;
font-size: 4rem;
color: #E4C3D2;
text-align: center;
font-size: 4rem;
color: #e4c3d2;
}
img#create-btn {
position: relative;
align-self: center;
padding-left: 2.5%;
padding-right: 2.5%;
position: relative;
align-self: center;
padding-left: 2.5%;
padding-right: 2.5%;
}
.review-container{
display: flex;
position: relative;
flex-wrap: wrap;
justify-content: center;
.review-container {
display: flex;
position: relative;
flex-wrap: wrap;
justify-content: center;
}
.review-container > div {
background-color: #f1f1f1;
text-align: center;
}
background-color: #f1f1f1;
text-align: center;
}