howfeed/static/global.css

108 lines
1.8 KiB
CSS
Raw Normal View History

2020-06-04 00:59:08 -07:00
body {
margin: 0;
font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-size: 14px;
line-height: 1.5;
2020-06-04 19:30:45 -07:00
color: #000;
background-color: rgb(150, 200, 234);
2020-06-04 00:59:08 -07:00
}
h1, h2, h3, h4, h5, h6 {
2020-06-04 19:30:45 -07:00
font-weight: bold;
line-height: 1.1;
2020-06-04 00:59:08 -07:00
}
h1 {
font-size: 2em;
}
a {
color: inherit;
}
2020-06-04 19:30:45 -07:00
a:hover {
color: #508FC3;
2020-06-14 17:11:07 -07:00
cursor: url('middlefinger.png'), default;
2020-06-04 19:30:45 -07:00
}
2020-06-04 00:59:08 -07:00
code {
font-family: menlo, inconsolata, monospace;
font-size: calc(1em - 2px);
color: #555;
background-color: #f0f0f0;
padding: 0.2em 0.4em;
border-radius: 2px;
}
2020-06-05 00:24:24 -07:00
@media (min-width: 800px) {
body {
font-size: 16px;
2020-06-04 21:29:16 -07:00
}
.content {
margin: 8rem auto !important;
}
2020-06-05 00:24:24 -07:00
.article-title {
font-size: 4rem !important;
}
.article-date {
font-size: 2rem !important;
}
figure.article-image img {
height: 12rem !important;
}
div.article-list > a {
margin: 2rem !important;
}
div.article-meta {
margin: 2rem;
}
div.article-list {
padding: 2rem 1rem;
}
2020-06-04 10:05:53 -07:00
}
2020-06-04 19:30:45 -07:00
div.article-list {
2020-06-05 00:24:24 -07:00
padding: 1rem;
2020-06-04 19:30:45 -07:00
background: #508FC3;
width: 80%;
margin: 0 auto;
}
div.article-list > a {
2020-06-05 00:24:24 -07:00
margin: 0;
2020-06-04 19:30:45 -07:00
display: flex;
text-decoration: none;
flex-direction: row;
align-items: start;
}
figure.article-image {
background: white;
display: flex;
align-self: center;
justify-content: center;
width: 33.33%;
}
figure.article-image img {
2020-06-05 00:24:24 -07:00
height: 6rem;
2020-06-04 19:30:45 -07:00
width: auto;
}
div.article-meta {
2020-06-05 00:24:24 -07:00
margin: 1rem;
2020-06-04 19:30:45 -07:00
background: white;
2020-06-05 00:24:24 -07:00
margin-right: 0;
2020-06-04 19:30:45 -07:00
padding: 0.75rem;
line-height: 1;
flex: 1 0 0;
}
.article-title {
2020-06-05 00:24:24 -07:00
font-size: 2rem;
2020-06-04 19:30:45 -07:00
}
.article-date {
2020-06-05 00:24:24 -07:00
font-size: 1rem;
2020-06-04 19:30:45 -07:00
}
2020-06-04 21:29:16 -07:00
.content {
background: #fff;
margin: 8rem 0;
padding: 2rem;
}