HTML, CSS and Javascript indent/formatting.

- 4 space indenting for HTML and Javascript.
- 2 space indenting for CSS
- Use hanging start curly for conditional blocks
This commit is contained in:
Joel Martin
2011-09-08 10:00:09 -05:00
parent 0911173a89
commit 01a9eee991
5 changed files with 422 additions and 415 deletions

View File

@@ -1,21 +1,21 @@
#noVNC-control-bar {
background-color:#000;
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.5, rgb(0,0,0)),
color-stop(0.5, rgb(20,20,20))
);
background-image: -moz-linear-gradient(
center bottom,
rgb(0,0,0) 50%,
rgb(20,20,20) 50%
);
background-color:#000;
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.5, rgb(0,0,0)),
color-stop(0.5, rgb(20,20,20))
);
background-image: -moz-linear-gradient(
center bottom,
rgb(0,0,0) 50%,
rgb(20,20,20) 50%
);
}
.triangle-right {
border:2px solid #fff;
background:#000;
color:#fff;
}
border:2px solid #fff;
background:#000;
color:#fff;
}