charsh/index.html

52 lines
667 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Charsh</title>
<style>
* {
box-sizing: border-box;
}
body {
font-family: "Ubuntu", sans-serif;
}
.field {
margin: 0 8px;
}
.field label {
display: block;
font-weight: bold;
font-size: 0.8em;
font-variant: small-caps;
margin-bottom: 8px;
}
.field label.label-inline {
display: inline;
}
.ability-scores .field input {
width: 65px;
}
#character-class {
width: 130px;
}
#character-level {
width: 65px;
}
.columns {
display: flex;
flex-flow: row;
margin: 0;
padding: 0;
}
</style>
</head>
</html>