39 lines
436 B
CSS
39 lines
436 B
CSS
*,
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-family: 'Helvetica', 'Arial', sans-serif;
|
|
color: #444;
|
|
font-weight: normal;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.coffee_break_article {
|
|
background-color: BurlyWood;
|
|
}
|
|
|
|
.normal_length_article {
|
|
background-color: #cafe69;
|
|
}
|
|
|
|
.lone_weekend_article {
|
|
background-color: DarkTurquoise;
|
|
}
|
|
|
|
.container {
|
|
margin: 0 auto;
|
|
padding: 1rem;
|
|
max-width: 1140px;
|
|
}
|