pinafore/assets/global.css

71 lines
953 B
CSS
Raw Normal View History

2018-01-07 00:51:25 +01:00
body {
margin: 0;
2018-01-07 06:05:49 +01:00
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue;
2018-01-07 00:51:25 +01:00
font-size: 14px;
line-height: 1.5;
color: #333;
}
main {
position: relative;
2018-01-07 07:04:43 +01:00
max-width: 800px;
padding: 25px;
2018-01-07 00:51:25 +01: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-08 00:11:17 +01:00
color: royalblue;
}
a:visited {
color: royalblue;
}
2018-01-08 01:00:42 +01: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 07:38:41 +01:00
p, label, input {
font-size: 1.3em;
2018-01-07 00:51:25 +01:00
}