71 lines
950 B
CSS
71 lines
950 B
CSS
* {
|
|
box-sizing:border-box
|
|
}
|
|
|
|
html {
|
|
min-height: 100%;
|
|
color: #404040;
|
|
font-family: Ubuntu, Helvetica, Arial, sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
-webkit-text-size-adjust: none;
|
|
text-size-adjust:none;
|
|
background-color: #eee;
|
|
}
|
|
|
|
@media only screen and (max-device-width: 480px) {
|
|
html {
|
|
font-size: 32px;
|
|
}
|
|
th, td {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
|
|
body {
|
|
margin: 1em;
|
|
padding: 0;
|
|
font-size:1rem
|
|
}
|
|
|
|
h1, h2, h3, h4, p, dl, pre {
|
|
margin: 0 0 1rem;
|
|
padding:0
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
table {
|
|
margin: 0 0 1rem;
|
|
border-collapse: collapse;
|
|
border-spacing:0;
|
|
}
|
|
|
|
th, td {
|
|
padding:4px 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
th {
|
|
font-weight:bold
|
|
}
|
|
|
|
input, button, select, option, textarea {
|
|
margin: 0;
|
|
padding: .5rem .75rem;
|
|
color: inherit;
|
|
font: inherit;
|
|
}
|
|
|
|
#new_mon {
|
|
td {
|
|
padding: 1px;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
label {
|
|
padding: .5rem;
|
|
}
|