2022-11-19 20:29:50 +00:00
|
|
|
/* homepage.css */
|
|
|
|
/* Color*/
|
|
|
|
body{
|
2022-11-20 23:46:13 +00:00
|
|
|
background-color: #97a5bd;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:17:32 +00:00
|
|
|
|
|
|
|
.top-bar{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:17:32 +00:00
|
|
|
.top-bar > img{
|
2022-11-21 00:31:32 +00:00
|
|
|
position: relative;
|
2022-11-21 03:17:32 +00:00
|
|
|
align-self: center;
|
|
|
|
padding-left: 2.5%;
|
|
|
|
padding-right: 2.5%;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:17:32 +00:00
|
|
|
.top-bar > h1{
|
2022-11-19 20:29:50 +00:00
|
|
|
position: relative;
|
2022-11-20 23:46:13 +00:00
|
|
|
text-align: center;
|
|
|
|
color: #E4C3D2;
|
2022-11-21 03:17:32 +00:00
|
|
|
font-size: 6rem;
|
2022-11-20 23:46:13 +00:00
|
|
|
font-family: 'Lucida Sans';
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:17:32 +00:00
|
|
|
|
|
|
|
.body-container {
|
|
|
|
display: flex;
|
|
|
|
max-height: 100%;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
2022-11-21 03:17:32 +00:00
|
|
|
|
|
|
|
.center-display {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
2022-11-21 00:31:32 +00:00
|
|
|
#recent-reviews-text {
|
2022-11-20 23:46:13 +00:00
|
|
|
font-family: 'Lucida Sans';
|
|
|
|
text-align: center;
|
2022-11-21 03:17:32 +00:00
|
|
|
font-size: 4rem;
|
2022-11-20 23:46:13 +00:00
|
|
|
color: #E4C3D2;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
2022-11-20 23:46:13 +00:00
|
|
|
img#create-btn {
|
2022-11-21 00:31:32 +00:00
|
|
|
position: relative;
|
2022-11-21 03:17:32 +00:00
|
|
|
align-self: center;
|
|
|
|
padding-left: 2.5%;
|
|
|
|
padding-right: 2.5%;
|
2022-11-20 23:46:13 +00:00
|
|
|
}
|
|
|
|
|
2022-11-19 20:29:50 +00:00
|
|
|
.review-container{
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
2022-11-21 00:31:32 +00:00
|
|
|
flex-wrap: wrap;
|
2022-11-21 01:03:55 +00:00
|
|
|
justify-content: center;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
.review-container > div {
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
text-align: center;
|
|
|
|
}
|