61 lines
876 B
CSS
61 lines
876 B
CSS
@import './base.css';
|
|
|
|
#app {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
|
|
font-weight: normal;
|
|
}
|
|
|
|
a,
|
|
.green {
|
|
text-decoration: none;
|
|
color: hsla(160, 100%, 37%, 1);
|
|
transition: 0.4s;
|
|
}
|
|
.message {
|
|
background-color: #3498db;
|
|
color: white;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
position: fixed;
|
|
top: 10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: 9999;
|
|
}
|
|
@media (hover: hover) {
|
|
a:hover {
|
|
background-color: hsla(160, 100%, 37%, 0.2);
|
|
}
|
|
}
|
|
|
|
.feed-title {
|
|
cursor: pointer;
|
|
font-family: 'Courier New';
|
|
font-size: 22px;
|
|
border-bottom: 1px solid #ccc;
|
|
padding: 1em;
|
|
}
|
|
|
|
.feed-content {
|
|
font-family: Georgia, 'Times New Roman', Times, serif;
|
|
font-size: 20px;
|
|
padding: 1em;
|
|
}
|
|
|
|
.feed-content p {
|
|
padding: 1em;
|
|
}
|
|
|
|
.feed-content h3 {
|
|
padding: 1em;
|
|
font-size: 21px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 14px;
|
|
}
|