2022-11-19 20:29:50 +00:00
|
|
|
/* homepage.css */
|
2022-11-21 03:50:54 +00:00
|
|
|
|
2022-11-21 07:50:54 +00:00
|
|
|
@font-face {
|
2022-11-22 01:27:18 +00:00
|
|
|
font-family: testFont;
|
2022-11-22 01:31:12 +00:00
|
|
|
src: url("CoveredByYourGrace-Regular.ttf");
|
2022-11-21 07:50:54 +00:00
|
|
|
}
|
|
|
|
|
2022-11-22 01:27:18 +00:00
|
|
|
/* Color */
|
|
|
|
body {
|
|
|
|
/* background-color: #97a5bd */
|
|
|
|
|
|
|
|
/* background-color: #E3E3EC; */
|
|
|
|
background-color: #f8f3f1;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:17:32 +00:00
|
|
|
|
2022-11-21 03:50:54 +00:00
|
|
|
.top-bar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:50:54 +00:00
|
|
|
|
|
|
|
.top-bar > img {
|
|
|
|
position: relative;
|
|
|
|
align-self: center;
|
|
|
|
padding-left: 2.5%;
|
|
|
|
padding-right: 2.5%;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:50:54 +00:00
|
|
|
|
|
|
|
.top-bar > h1 {
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
2022-11-22 01:27:18 +00:00
|
|
|
|
|
|
|
/* color: #e4c3d2; */
|
|
|
|
|
|
|
|
/* color: rgb(145, 124, 175); */
|
|
|
|
color: #516754;
|
2022-11-21 03:50:54 +00:00
|
|
|
font-size: 6rem;
|
2022-11-22 01:55:44 +00:00
|
|
|
font-family: testFont, sans-serif;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:17:32 +00:00
|
|
|
|
|
|
|
.body-container {
|
2022-11-21 03:50:54 +00:00
|
|
|
display: flex;
|
|
|
|
max-height: 100%;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
2022-11-21 03:17:32 +00:00
|
|
|
.center-display {
|
2022-11-21 03:50:54 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 06:35:02 +00:00
|
|
|
|
2022-11-21 05:58:44 +00:00
|
|
|
.search-bar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-12-02 01:23:40 +00:00
|
|
|
font-family: "Century Gothic", sans-serif;
|
2022-12-01 02:09:09 +00:00
|
|
|
font-weight: bold;
|
|
|
|
color: #516754;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 05:58:44 +00:00
|
|
|
|
2022-12-02 01:02:09 +00:00
|
|
|
#sort {
|
2022-12-01 02:01:33 +00:00
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
|
2022-11-21 21:52:44 +00:00
|
|
|
.search-bar > form {
|
|
|
|
float: right;
|
|
|
|
padding: 6px 10px;
|
2022-12-02 01:02:09 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
margin-top: 8px;
|
2022-11-21 21:52:44 +00:00
|
|
|
margin-right: 16px;
|
2022-11-30 04:51:45 +00:00
|
|
|
*/
|
2022-11-22 01:27:18 +00:00
|
|
|
background: rgb(239 183 183);
|
2022-11-21 21:52:44 +00:00
|
|
|
font-size: 17px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 12px;
|
2022-11-30 04:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#search-btn {
|
|
|
|
position: relative;
|
|
|
|
align-self: center;
|
2022-12-02 01:02:09 +00:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
2022-11-21 21:52:44 +00:00
|
|
|
}
|
|
|
|
|
2022-11-21 00:31:32 +00:00
|
|
|
#recent-reviews-text {
|
2022-11-21 03:50:54 +00:00
|
|
|
text-align: center;
|
|
|
|
font-size: 4rem;
|
2022-11-21 08:56:54 +00:00
|
|
|
color: #516754;
|
2022-11-22 01:55:44 +00:00
|
|
|
font-family: testFont, sans-serif;
|
2022-11-21 20:32:54 +00:00
|
|
|
}
|
2022-11-21 08:56:54 +00:00
|
|
|
|
2022-11-20 23:46:13 +00:00
|
|
|
img#create-btn {
|
2022-11-21 03:50:54 +00:00
|
|
|
position: relative;
|
|
|
|
align-self: center;
|
|
|
|
padding-left: 2.5%;
|
|
|
|
padding-right: 2.5%;
|
2022-12-02 01:02:09 +00:00
|
|
|
cursor: pointer;
|
|
|
|
width: 10%;
|
|
|
|
height: 10%;
|
2022-12-01 01:11:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img#create-btn-invis {
|
2022-12-02 01:02:09 +00:00
|
|
|
opacity: 0;
|
2022-12-01 06:01:24 +00:00
|
|
|
padding-left: 2.5%;
|
|
|
|
padding-right: 2.5%;
|
2022-12-02 01:02:09 +00:00
|
|
|
width: 10%;
|
|
|
|
height: 10%;
|
2022-11-20 23:46:13 +00:00
|
|
|
}
|
|
|
|
|
2022-11-21 03:50:54 +00:00
|
|
|
.review-container {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:50:54 +00:00
|
|
|
|
2022-11-19 20:29:50 +00:00
|
|
|
.review-container > div {
|
2022-11-21 03:50:54 +00:00
|
|
|
background-color: #f1f1f1;
|
|
|
|
text-align: center;
|
|
|
|
}
|