eexiv/src/app/page.module.css

115 lines
1.8 KiB
CSS
Raw Normal View History

2024-02-09 19:40:32 -08:00
/* main stylesheet for eeXiv */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Roboto:wght@700&family=Zilla+Slab:wght@400;500;700&display=swap");
.header {
width: 100%;
height: 150px;
padding: 10px;
background: linear-gradient(to left, #80bfff 0%, #ccc 50%, white 100%);
color: black;
}
.banner {
width: 100%;
height: 100px;
padding: 20px;
background-color: #0c5198;
color: white;
margin-bottom: 50px;
}
.title {
position: absolute;
top: 162.5px;
color: white;
font-size: 50px;
margin-bottom: 50px;
cursor: pointer;
}
.search {
position: absolute;
top: 200px;
left: 50%;
width: 40vw;
}
.searchBox,
.searchButton {
display: inline;
}
.searchBox {
height: 45px;
border: 3px solid #0c5198;
border-radius: 10px;
}
.searchButton {
background-color: #0c5198;
color: white;
border: 3px solid white;
padding: 10px;
border-radius: 10px;
}
.searchButton:hover {
background-color: white;
color: #0c5198;
}
.wordmark {
float: left;
height: 100px;
margin-top: 25px;
}
.contributions {
width: 40vw;
margin-top: 50px;
margin-left: calc(100% - 40vw - 10px);
}
.contributions a {
color: #0c5198;
}
.footerContent {
width: 100%;
height: 150px;
padding: 10px;
background-color: #c4840c;
color: white;
height: fit-content;
padding-top: 20px;
padding-bottom: 20px;
font-family: "Inter", sans-serif;
}
.footerContent a {
color: white;
font-weight: bold;
}
.footerContent ul {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0;
margin: 0;
justify-content: space-between;
}
.footerContent li {
width: calc(33.333% - 10px);
margin-right: 10px;
margin-bottom: 5px;
text-align: center;
}
.content {
padding: 35px;
border-radius: 15px;
}