12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- body {
- font-family: "Helvetica Neue";
- font-weight: lighter;
- color: #2a2a2a;
- background-color: #f0f0ff;
-
- -webkit-appearance: none;
- -webkit-touch-callout: none;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
-
- -webkit-touch-callout: none; -webkit-user-select: none;
- }
- h1 {
- text-align: center;
- }
- button {
- margin: 15px;
- -webkit-appearance:none;
- font-size: 1.2em;
- }
- #mainPage {
- text-align:center;
- }
- #detailPage {
- text-align:center;
- font-size: 2em;
- }
- #detailPage div {
- margin: 20px;
- }
- #detailPage button {
- margin-top: 40px;
- font-size: 0.6em; /* undo 2em from parent */
- }
- ul {
- list-style: none;
- border-bottom: 1px solid #d3d3d3;
- text-align: left;
- }
- li {
- margin-left: -40px;
- padding: 5px;
- padding-top: 10px;
- min-height: 50px;
- border-top: 1px solid #d3d3d3;
- font-size: 0.9em;
- }
- button {
- -webkit-appearance: none;
- font-size: 1.5em;
- border-radius: 0;
- }
|