pinafore/assets/global.css

71 lines
953 B
CSS
Raw Normal View History

2018-01-06 23:51:25 +00:00
body {
margin: 0;
2018-01-07 05:05:49 +00:00
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue;
2018-01-06 23:51:25 +00:00
font-size: 14px;
line-height: 1.5;
color: #333;
}
main {
position: relative;
2018-01-07 06:04:43 +00:00
max-width: 800px;
padding: 25px;
2018-01-06 23:51:25 +00:00
box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 0.5em 0;
font-weight: 400;
line-height: 1.2;
}
h1 {
font-size: 2em;
}
a {
2018-01-07 23:11:17 +00:00
color: royalblue;
}
a:visited {
color: royalblue;
}
2018-01-08 00:00:42 +00:00
input {
border: 1px solid #dadada;
padding: 5px;
}
button {
font-size: 1.2em;
border: 1px solid #333;
background: #ededed;
border-radius: 2px;
padding: 10px 15px;
}
button:hover {
background: #ddd;
}
button:active {
background: #fafafa;
}
button.primary {
border: 1px solid #1e3066;
background: #668cff;
color: white;
}
button.primary:hover {
background: #446add;
}
button.primary:active {
background: #99b3ff;
}
2018-01-08 06:38:41 +00:00
p, label, input {
font-size: 1.3em;
2018-01-06 23:51:25 +00:00
}