akyuu/templates/style.css

61 行
781 B
CSS

body {
background-color: white;
color: black;
font: 1rem/1.5 -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'Helvetica Neue', sans-serif;
word-wrap: break-word;
max-width: 30rem;
padding: 0 1rem;
margin: 0 auto;
}
a {
color: red;
}
a:hover {
color: gold;
}
a:focus {
outline: thin solid;
}
h2:first-child {
margin-top: 0;
}
form {
margin-bottom: 1rem;
}
form p,
label span {
color: #444;
font-size: .8rem;
}
form p {
margin: 0;
}
label {
font-weight: bold;
display: block;
}
button,
input {
font-size: 1rem;
}
input#twt {
width: 100%;
}
table {
border-color: purple;
}
tr {
border-color: lime;
}
td {
border-color: lightblue;
}