mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2024-11-09 21:24:44 +00:00
33 lines
466 B
CSS
33 lines
466 B
CSS
/* CreatePage.css */
|
|
|
|
@font-face {
|
|
font-family: testFont;
|
|
src: url("CoveredByYourGrace-Regular.ttf");
|
|
}
|
|
|
|
body {
|
|
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%;
|
|
width: 7.5%;
|
|
height: 7.5%;
|
|
}
|
|
|
|
.top-bar > h1 {
|
|
position: relative;
|
|
text-align: center;
|
|
color: #516754;
|
|
font-size: 6rem;
|
|
font-family: testFont, sans-serif;
|
|
}
|