You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
573 B
CSS
50 lines
573 B
CSS
3 years ago
|
html, body{
|
||
|
margin: 0;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
body {
|
||
|
font-size: 1.5rem;
|
||
|
line-height: 1.4;
|
||
|
}
|
||
|
|
||
|
.episode{
|
||
|
margin: 0 16px;
|
||
|
padding: 0 16px;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
width: 100%;
|
||
|
margin-bottom: 32px;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.container > * {
|
||
|
flex: 1;
|
||
|
flex-basis: 30%;
|
||
|
}
|
||
|
|
||
|
.container > * + * {
|
||
|
padding-left: 16px;
|
||
|
}
|
||
|
|
||
|
.meta {
|
||
|
text-align: center;
|
||
|
margin-bottom: 64px;
|
||
|
}
|
||
|
|
||
|
.outro {
|
||
|
margin: 64px auto;
|
||
|
padding: 0 16px;
|
||
|
border-top: 1px dashed tomato;
|
||
|
padding-top: 64px;
|
||
|
max-width: 1440px;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
text-align: center;
|
||
3 years ago
|
}
|