Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ composer.lock
.DS_Store
/nbproject/private/
nbproject
/.idea
Empty file added public/css/colors.css
Empty file.
4 changes: 4 additions & 0 deletions public/css/colors.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@color-darkgrey: #424e56;
@color-darkblue: #1c3d52;
@color-lightgrey: #e2e6e9;
@color-black: #000000;
103 changes: 103 additions & 0 deletions public/css/common.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
/* fonts */
.verdana {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
.arial {
font-family: Arial, Helvetica, sans-serif;
}
.centuryGothic {
font-family: 'century gothic', verdana, arial, helvetica, sans-serif;
}
/**
*
* HTML ELEMENTS
*
*/
/* You can put your HTML reset declarations in here if you like */
/**
*
* BORDER RADIUS
*
*/
/* clears the border radius from an element */
.noBorderRadius {
-moz-border-radius: 0;
border-radius: 0;
-webkit-border-radius: 0;
}
/**
*
* BOX SHADOWS
*
*/
/* same as above, except with spread. not sure what uses above so i may screw it up */
.noBoxShadow {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
/**
*
* GRADIENTS
*
*/
/**
*
* TRANSITIONS
*
*/
.noTransition {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
/**
*
* REUSABLE ELEMENTS
*
*/
/* simple table */
.simpleTable th,
.simpleTable td,
.simpleTable tr,
.simpleTable tbody {
border: none;
background: none;
padding: 0;
margin: 0;
}
/* disables selection */
.noSelect {
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
/* enables selection */
.select {
-moz-user-select: auto;
-webkit-user-select: auto;
user-select: auto;
}
/* overflow ellipsis */
.overflowEllipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* opacity */
/* clearfix */
.clearfix {
zoom: 1;
}
.clearfix:before,
.clearfix:after {
content: "\0020";
display: block;
height: 0;
overflow: hidden;
}
.clearfix:after {
clear: both;
}
2 changes: 1 addition & 1 deletion public/css/common.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* BORDER RADIUS
*
*/
.borderRadius (@radius: 5px) {
.borderRadius (@radius: 1px) {
-moz-border-radius:@radius;
border-radius:@radius;
-webkit-border-radius:@radius;
Expand Down
56 changes: 8 additions & 48 deletions public/css/elements.less
Original file line number Diff line number Diff line change
@@ -1,28 +1,3 @@
/* Fonts */
@font-face {
font-family: 'Oxygen';
src: url('fonts/Oxygen/oxygen-regular-webfont.eot');
src: url('fonts/Oxygen/oxygen-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/Oxygen/oxygen-regular-webfont.woff') format('woff'),
url('fonts/Oxygen/oxygen-regular-webfont.ttf') format('truetype'),
url('fonts/Oxygen/oxygen-regular-webfont.svg#oxygenregular') format('svg');
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'Oxygen';
src: url('fonts/Oxygen/oxygen-bold-webfont.eot');
src: url('fonts/Oxygen/oxygen-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/Oxygen/oxygen-bold-webfont.woff') format('woff'),
url('fonts/Oxygen/oxygen-bold-webfont.ttf') format('truetype'),
url('fonts/Oxygen/oxygen-bold-webfont.svg#oxygenbold') format('svg');
font-weight: 700;
font-style: normal;
}



@highdensity: ~"only screen and (-webkit-min-device-pixel-ratio: 1.5)",
~"only screen and (min--moz-device-pixel-ratio: 1.5)",
~"only screen and (-o-min-device-pixel-ratio: 3/2)",
Expand All @@ -34,58 +9,45 @@
@desktop: ~"only screen and (min-width: 950px) and (max-width: 1128px)";
@desktopXl: ~"only screen and (min-width: 1129px)";

.oxygen {
font-family: 'Oxygen', sans-serif;
}


/* Elements */

.input {
display: inline-block;
vertical-align: middle;
height: 18px;
.oxygen;
.insetShadow(0px, 1px, 2px, 1px, #eee);
font-family: 'Open Sans', sans-serif;
color:#333;
padding:4px 7px;
border:1px solid #cccccc;
font-size: 13px;
.borderRadius(1px);
.transition;
border-radius: 1px;
width: 210px;

&:focus {
border-color: rgba(82, 168, 236, 0.8);
.innerOuterShadow;
outline: 0;
}
}

.greyButton {
transition: background-color 0.3s;
padding: 7px 13px;
margin: 0;
border: none;
.verticalGradient(#818181, #646464);
.boxShadow(0, 1px, 5px, #444);
background-color: @color-darkgrey;
color: #fff;
font-size: 13px;
font-size: 11px;
font-weight: normal;
cursor: pointer;
.borderRadius(2px);
.noSelect;
border-radius: 1px;

&:hover, &:focus {
.verticalGradient(#929292, #646464);
}

&:active {
.innerOuterShadow(0, 5px, 7px, 1px, #666, 0, 1px, 2px, #777);
background-color: @color-darkblue;
}
}

.headerButtonPadding {
padding: 9px 12px 8px;
padding: 7px 10px 6px;
}

.headerButton {
Expand All @@ -99,7 +61,6 @@

.editForm {
color: #444;
text-shadow: white 0 1px 0;

a.item_link {
position: absolute;
Expand Down Expand Up @@ -242,7 +203,6 @@
div.color_preview {
height: 8px;
margin: 0 33px 0 1px;
.boxShadow(0px, 1px, 2px, #aaa);
}
}
}
Expand Down
Loading