Initial commit
This commit is contained in:
parent
d5804ab210
commit
da434b7553
11 changed files with 17461 additions and 0 deletions
71
style.css
Normal file
71
style.css
Normal file
|
@ -0,0 +1,71 @@
|
|||
* {
|
||||
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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue