Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Tweak appearance bit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
978665e91404a3dab9393751bdb2c0dd |
User & Date: | vandys 2018-10-14 22:08:17 |
Context
2018-10-14
| ||
22:08 | Cleanly cancel entirely new message check-in: 37e94bb1ec user: vandys tags: master, trunk | |
22:08 | Tweak appearance bit check-in: 978665e914 user: vandys tags: master, trunk | |
2018-10-12
| ||
13:21 | Lose the transition, it's just annoying when trying to switch notes. check-in: cfefa3700f user: vandys tags: master, trunk | |
Changes
Changes to css/main.css.
12 13 14 15 16 17 18 |
width: 100%; height: 200px; } #entries>button { background-color: pink; border-radius: 25px; } |
> > > > > > |
12 13 14 15 16 17 18 19 20 21 22 23 24 |
width: 100%; height: 200px; } #entries>button { background-color: pink; border-radius: 25px; } button { font-size: 16px; } #editor>textarea, #editor>input { font-size: 14px; } |
Changes to index.html.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<link rel="stylesheet" type="text/css" href="css/main.css" /> </head> <body> <div id="mainmenu"> <div id="tools"> <button onclick="tool_new()">Add New</button> <button onclick="sync()">Sync Entries</button> <button onclick="tool_logout()">Logout</button> </div> <div id="entries"> </div> |
| |
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<div id="mainmenu">
<div id="tools" style="padding-bottom: 8px;">
<button onclick="tool_new()">Add New</button>
<button onclick="sync()">Sync Entries</button>
<button onclick="tool_logout()">Logout</button>
</div>
<div id="entries">
</div>
|