forked from mindspore/mindspore
93 lines
1.4 KiB
CSS
93 lines
1.4 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f4f4;
|
|
}
|
|
|
|
header {
|
|
background-color: #333;
|
|
color: #fff;
|
|
text-align: center;
|
|
padding: 1rem;
|
|
}
|
|
|
|
main {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.filter-container {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
#dateFilter {
|
|
padding: 0.5rem;
|
|
border-radius: 3px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.summary-card {
|
|
background-color: #fff;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
padding: 1rem;
|
|
margin-bottom: 1rem;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.summary-card h2 {
|
|
margin-top: 0;
|
|
color: #333;
|
|
}
|
|
|
|
.pub-date {
|
|
color: #777;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.summary-card img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.summary-content {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.read-more {
|
|
display: inline-block;
|
|
background-color: #333;
|
|
color: #fff;
|
|
padding: 0.5rem 1rem;
|
|
text-decoration: none;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.pagination {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.page-link {
|
|
display: inline-block;
|
|
padding: 0.5rem 1rem;
|
|
background-color: #333;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
border-radius: 3px;
|
|
margin: 0 0.5rem;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 1rem;
|
|
background-color: #333;
|
|
color: #fff;
|
|
}
|