mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2024-11-12 22:16:16 +00:00
Merge branch 'sprint-2' of https://github.com/cse110-fa22-group29/cse110-fa22-group29 into sprint-2
This commit is contained in:
commit
57be3a11ed
@ -171,7 +171,7 @@ describe("test App end to end", async () => {
|
|||||||
let save_btn = await page.$("#save-btn");
|
let save_btn = await page.$("#save-btn");
|
||||||
await save_btn.click();
|
await save_btn.click();
|
||||||
await page.waitForNavigation();
|
await page.waitForNavigation();
|
||||||
});
|
}).timeout(10000);
|
||||||
|
|
||||||
it("check details page", async () => {
|
it("check details page", async () => {
|
||||||
// check the details page for correctness
|
// check the details page for correctness
|
||||||
|
@ -26,5 +26,5 @@ body {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
color: #516754;
|
color: #516754;
|
||||||
font-size: 6rem;
|
font-size: 6rem;
|
||||||
font-family: testFont;
|
font-family: testFont, sans-serif;
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,16 @@
|
|||||||
.journal-form h1 {
|
@font-face {
|
||||||
font-family: testFont;
|
font-family: testFont;
|
||||||
|
src: url("CoveredByYourGrace-Regular.ttf");
|
||||||
|
}
|
||||||
|
|
||||||
|
.journal-form h1 {
|
||||||
|
font-family: testFont, sans-serif;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.journal-form {
|
.journal-form {
|
||||||
font-size: 120%;
|
font-size: 120%;
|
||||||
font-family: "Century Gothic";
|
font-family: "Century Gothic", sans-serif;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
color: #516754;
|
color: #516754;
|
||||||
@ -33,8 +38,7 @@ input[type="text"]:focus {
|
|||||||
|
|
||||||
.rating {
|
.rating {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: nowrap;
|
flex-flow: nowrap row-reverse;
|
||||||
flex-direction: row-reverse;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.hidden,
|
.hidden,
|
||||||
@ -86,8 +90,7 @@ input[type="text"]:focus {
|
|||||||
|
|
||||||
.tag-container {
|
.tag-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-flow: wrap row;
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag {
|
.tag {
|
||||||
|
@ -32,7 +32,7 @@ h1 {
|
|||||||
/* color: #e4c3d2; */
|
/* color: #e4c3d2; */
|
||||||
color: #516754;
|
color: #516754;
|
||||||
font-size: 6rem;
|
font-size: 6rem;
|
||||||
font-family: testFont;
|
font-family: testFont, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.d-tag {
|
.d-tag {
|
||||||
|
@ -34,7 +34,7 @@ body {
|
|||||||
/* color: rgb(145, 124, 175); */
|
/* color: rgb(145, 124, 175); */
|
||||||
color: #516754;
|
color: #516754;
|
||||||
font-size: 6rem;
|
font-size: 6rem;
|
||||||
font-family: testFont;
|
font-family: testFont, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.body-container {
|
.body-container {
|
||||||
@ -70,26 +70,7 @@ body {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 4rem;
|
font-size: 4rem;
|
||||||
color: #516754;
|
color: #516754;
|
||||||
font-family: testFont;
|
font-family: testFont, sans-serif;
|
||||||
}
|
|
||||||
|
|
||||||
img#create-btn {
|
|
||||||
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 > div {
|
|
||||||
background-color: #f1f1f1;
|
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
img#create-btn {
|
img#create-btn {
|
||||||
|
Loading…
Reference in New Issue
Block a user