Skip to content

Commit

Permalink
design tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
gvn committed Dec 24, 2013
1 parent 734ad14 commit 5beb8ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.DS_Store
_design/
7 changes: 6 additions & 1 deletion _ui/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Primitives & Resets
########################################### */

* , *:before, *:after {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

body,div,dl,dt,dd,ul,ol,li,a,h1,h2,h3,h4,h5,h6,pre,form,fieldset,label,input,textarea,p,blockquote,table,th,td,iframe {
padding: 0;
margin: 0;
Expand Down Expand Up @@ -147,9 +151,10 @@ video {
cursor: crosshair;
}

canvas, img {
canvas {
width: 640px;
height: 480px;
border: 1px solid #ccc;
}

.controls {
Expand Down
2 changes: 1 addition & 1 deletion _ui/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ window.VIDEO = {

// Canvas Setup

self.ctx.fillStyle = '#000';
self.ctx.fillStyle = '#fff';
self.ctx.fillRect(0, 0, self.options.width, self.options.height);

// Setup Webcam
Expand Down

0 comments on commit 5beb8ed

Please sign in to comment.