58 lines
934 B
CSS
58 lines
934 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Verdana, Geneva, sans-serif;
|
|
}
|
|
|
|
input {
|
|
max-width: 500px;
|
|
}
|
|
|
|
.gray {
|
|
color: #828282;
|
|
}
|
|
|
|
.orange {
|
|
background-color: #ff6600;
|
|
}
|
|
|
|
.background-gray {
|
|
background-color: rgb(246, 246, 239);
|
|
}
|
|
|
|
.f11 {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.w85 {
|
|
width: 85%;
|
|
}
|
|
|
|
.button {
|
|
font-family: monospace;
|
|
font-size: 10pt;
|
|
color: black;
|
|
background-color: buttonface;
|
|
text-align: center;
|
|
padding: 2px 6px 3px;
|
|
border-width: 2px;
|
|
border-style: outset;
|
|
border-color: buttonface;
|
|
cursor: pointer;
|
|
max-width: 250px;
|
|
}
|
|
|
|
/* body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
} */
|