pinafore/assets/global.css

98 lines
1.2 KiB
CSS
Raw Normal View History

2018-01-06 15:51:25 -08:00
body {
margin: 0;
2018-01-06 21:05:49 -08:00
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue;
2018-01-06 15:51:25 -08:00
font-size: 14px;
line-height: 1.5;
color: #333;
2018-01-10 20:45:02 -08:00
background: white;
2018-01-06 15:51:25 -08:00
}
main {
position: relative;
2018-01-06 22:04:43 -08:00
max-width: 800px;
2018-01-10 21:08:29 -08:00
padding: 15px 15px;
2018-01-06 15:51:25 -08:00
box-sizing: border-box;
2018-01-10 20:45:02 -08:00
margin: 0 auto;
2018-01-06 15:51:25 -08:00
}
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 15:11:17 -08:00
color: royalblue;
2018-01-08 17:44:29 -08:00
text-decoration: none;
2018-01-07 15:11:17 -08:00
}
a:visited {
color: royalblue;
}
2018-01-10 20:45:02 -08:00
a:hover {
text-decoration: underline;
}
2018-01-07 16:00:42 -08:00
input {
border: 1px solid #dadada;
padding: 5px;
}
button {
font-size: 1.2em;
background: #ededed;
border-radius: 2px;
padding: 10px 15px;
2018-01-10 20:59:04 -08:00
border: 1px solid #ededed;
2018-01-07 16:00:42 -08:00
}
2018-01-10 20:45:02 -08:00
button {
cursor: pointer;
}
2018-01-07 16:00:42 -08:00
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-07 22:38:41 -08:00
p, label, input {
font-size: 1.3em;
2018-01-10 20:45:02 -08:00
}
ul {
padding: 0;
margin: 0;
}
p {
margin: 0;
padding: 0;
2018-01-10 20:59:04 -08:00
}
@media (max-width: 767px) {
main {
2018-01-10 21:08:29 -08:00
padding: 5px 5px;
2018-01-10 20:59:04 -08:00
}
2018-01-06 15:51:25 -08:00
}