cse110-fa22-group29/source/static/homepage.css

121 lines
1.7 KiB
CSS
Raw Normal View History

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