Files
es6play/style.css

31 lines
563 B
CSS

* {
margin: 0;
box-sizing: border-box;
}
body,
html {
font-family: "rooney-sans", Avenir-Book, Calibri, sans-serif;
color: #424242;
line-height: 1.4;
}
.container {
margin: 2rem auto;
width: 80%;
text-align: center;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.17);
background: #eceff1;
}
h2 {
font-family: "rooney-web", 'AmericanTypewriter', Rockwell, serif;
font-size: 2.5em;
font-weight: bold;
padding: 1rem;
}
p {
padding: .2rem;
font-family: "rooney-web", 'AmericanTypewriter', Rockwell, serif;
}