mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2024-11-10 05:34:44 +00:00
4073d2cc4b
Co-authored-by: Kara Hoagland <KH-Cl@users.noreply.github.com> Co-authored-by: Arthur Lu <learthurgo@gmail.com> Co-authored-by: d7hernan <d7hernan@users.noreply.github.com>
45 lines
642 B
CSS
45 lines
642 B
CSS
/* ReviewDetails.css */
|
|
|
|
@font-face {
|
|
font-family: "testFont";
|
|
src: url(CoveredByYourGrace-Regular.ttf);
|
|
}
|
|
|
|
body {
|
|
background-color: #F8F3F1;
|
|
}
|
|
|
|
h1 {
|
|
text-align: 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 > h1 {
|
|
position: relative;
|
|
text-align: center;
|
|
/*color: #e4c3d2;*/
|
|
color:#516754;
|
|
font-size: 6rem;
|
|
font-family: 'testFont';
|
|
}
|
|
|
|
.d-tag {
|
|
background-color: grey;
|
|
border-radius: 7px;
|
|
color: white;
|
|
padding-right: 7px;
|
|
padding-left: 7px;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
} |