Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
Haldun Bayhantopcu committed Jan 8, 2012
0 parents commit ecdec55
Show file tree
Hide file tree
Showing 13 changed files with 4,958 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
.DS_Store

19 changes: 19 additions & 0 deletions LICENSE
@@ -0,0 +1,19 @@
Copyright (C) 2011 by Haldun Bayhantopcu

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Empty file added README
Empty file.
96 changes: 96 additions & 0 deletions editor.css
@@ -0,0 +1,96 @@
html, body {
background-color: #eee;
}
body {
padding-top: 20px; /* 40px to make the container go all the way to the bottom of the topbar */
}
.container > footer p {
text-align: center; /* center align it with the container */
}
.container {
}

/* The white background content wrapper */
.content {
background-color: #fff;
padding: 20px;
margin: 0 -20px; /* negative indent the amount of the padding to maintain the grid system */
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;

-webkit-box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.4);
box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.4);
}

/* Page header tweaks */
.page-header {
background-color: #3B9A0C;
padding: 20px 20px 10px;
margin: -20px -20px 20px;
-webkit-border-radius: 6px 6px 0px 0px;
-moz-border-radius: 6px 6px 0px 0px;
border-radius: 6px 6px 0px 0px;

}
.page-header h1 {
color: #fff;
text-shadow: 0px 0px 3px #333;
}

/* Styles you shouldn't keep as they are for displaying this base example only */
.content .span10,
.content .span5 {
min-height: 500px;
}
/* Give a quick and non-cross-browser friendly divider */
.content .span5 {
margin-left: 0;
padding-left: 19px;
border-right: 1px solid #eee;
}

.topbar .btn {
border: 0;
}

.btn.xsmall{padding:3px 6px 3px;font-size:10px;}
.form-stacked{
padding-left: 0;
}


.field-wrapper {
display: block;
cursor: pointer;
text-decoration: none;
padding: 10px 10px 15px 10px;
border: 1px solid transparent;
margin: 0px 0px 10px 0px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}

.field-wrapper * {
cursor: pointer;
}

.field-wrapper:hover {
border: 1px dashed #7CC07F;
}

.field-wrapper.selected {
border: 1px solid #9ABA9E;
background-color: #EFFFF6;
}

span.required {
color: red;
}

.add-field-pane .btn {
width: 125px;
margin: 0px 5px 5px 0px;
}

0 comments on commit ecdec55

Please sign in to comment.