new-tab-page/style.css

49 lines
616 B
CSS
Raw Normal View History

2020-02-29 09:36:37 +00:00
body {
font-family: "Roboto", sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
body div {
flex-grow: 1;
}
html {
background: #fafafa;
}
h1 {
font-family: "Open Sans", "Roboto", sans-serif;
text-align: center;
font-size:4em;
font-weight: 200;
}
p, footer, ul {
width: 80%;
margin: 20px auto;
line-height: 1.3em;
}
p, ul {
font-size: 120%;
}
li {
margin-top: 3px;
}
ul {
list-style-type: " ";
}
a {
color: mediumpurple;
text-decoration: none;
}
footer {
text-align: center;
color: grey;
font-style: italic;
margin: 20px auto;
box-sizing: content-box;
}