Author: jruchaud Date: 2015-04-16 08:07:15 +0000 (Thu, 16 Apr 2015) New Revision: 1210 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1210 Log: Improve style :-/ Modified: wit/css/actions.css wit/css/select.css wit/css/style.css wit/package.json Modified: wit/css/actions.css =================================================================== --- wit/css/actions.css 2015-04-15 16:44:34 UTC (rev 1209) +++ wit/css/actions.css 2015-04-16 08:07:15 UTC (rev 1210) @@ -1,9 +1,15 @@ .actions { display: flex; justify-content: center; + + background-color: aliceblue; + position: fixed; + bottom: 0; + width: 100%; + border-top: 2px #ccc solid; } -.actions div { +.actions>div { height: 50px; width: 50px; background-color: #ccc; @@ -12,13 +18,15 @@ display: flex; justify-content: center; align-items: center; + + border-radius: 25px; } #play .icon { - border-top: transparent 20px solid; + border-top: transparent 15px solid; /* border-right: transparent 20px solid; */ - border-bottom: transparent 20px solid; - border-left: black 20px solid; + border-bottom: transparent 15px solid; + border-left: black 15px solid; height: 0px; width: 0px; @@ -26,11 +34,17 @@ } #stop .icon { - height: 30px; - width: 30px; + height: 25px; + width: 25px; background-color: black; } #time { text-align: center; + position: absolute; + width: 100%; + bottom: 62px; + + border-top: 2px #ccc solid; + background-color: antiquewhite; } \ No newline at end of file Modified: wit/css/select.css =================================================================== --- wit/css/select.css 2015-04-15 16:44:34 UTC (rev 1209) +++ wit/css/select.css 2015-04-16 08:07:15 UTC (rev 1210) @@ -1,6 +1,6 @@ .selection { background-color: #FFF; - border: 1px solid #AAA; + /*border: 1px solid #AAA;*/ border-radius: 4px; cursor: text; min-height: 32px; Modified: wit/css/style.css =================================================================== --- wit/css/style.css 2015-04-15 16:44:34 UTC (rev 1209) +++ wit/css/style.css 2015-04-16 08:07:15 UTC (rev 1210) @@ -1,3 +1,10 @@ * { box-sizing: border-box; + margin: 0; + padding: 0; } + +body { + width: 100%; + height: 100%; +} Modified: wit/package.json =================================================================== --- wit/package.json 2015-04-15 16:44:34 UTC (rev 1209) +++ wit/package.json 2015-04-16 08:07:15 UTC (rev 1210) @@ -3,8 +3,11 @@ "main": "index.html", "version": "1.0.0", "window": { - "width": 300, - "height": 300 + "width": 480, + "height": 180, + "toolbar": true, + "frame": true, + "transparent": false }, "dependencies": { "nedb": "^1.1.2",