v1.1
This commit is contained in:
@@ -1,8 +1,35 @@
|
||||
/* Fonts */
|
||||
|
||||
@font-face {
|
||||
font-family: 'Databap';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Databap'), url(style/databap_normal_normal.woff) format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Databap';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Databap Bold'), local('Databap-Bold'), url(style/databap_normal_bold.woff) format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Databap';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: local('Databap Italic'), local('Databap-Italic'), url(style/databap_italic_normal.woff) format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Databap';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: local('Databap Bold Italic'), local('Databap-BoldItalic'), url(style/databap_italic_bold.woff) format('woff');
|
||||
}
|
||||
|
||||
/* Standard Tags */
|
||||
|
||||
body, html {
|
||||
background:$col_none;
|
||||
font-family:Verdana, Arial;
|
||||
font-family: 'Databap', sans-serif;
|
||||
color:$col_main_1;
|
||||
background:$col_main_1;
|
||||
padding:0;
|
||||
@@ -24,13 +51,12 @@ table td {
|
||||
}
|
||||
|
||||
input, textarea, select {
|
||||
font-family:Verdana, Arial;
|
||||
font-size:12px;
|
||||
background:none;
|
||||
font-family: 'Databap', sans-serif;
|
||||
font-size:$size_big;
|
||||
background:$col_none;
|
||||
border:none;
|
||||
}
|
||||
input[type=text], input[type=password] {
|
||||
border:2px solid $col_main_1;
|
||||
padding:5px;
|
||||
width:200px;
|
||||
}
|
||||
@@ -41,8 +67,6 @@ input[type=button]:hover, input[type=submit]:hover, input[type=password]:hover,
|
||||
|
||||
input[disabled="disabled"], textarea[disabled="disabled"], input:disabled, textarea:disabled {
|
||||
background-color:$col_main_2;
|
||||
border-color:$col_main_2;
|
||||
border:2px solid $col_main_1;
|
||||
}
|
||||
|
||||
input[disabled="disabled"]:hover, textarea[disabled="disabled"]:hover, input:disabled:hover, textarea:disabled:hover {
|
||||
@@ -57,9 +81,17 @@ input[type=button], .clickable {
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
iframe {
|
||||
width:100%;
|
||||
height:100%;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
background:$col_main_3;
|
||||
border:none;
|
||||
}
|
||||
|
||||
select {
|
||||
background:$col_none;
|
||||
border:2px solid $col_main_1;
|
||||
padding:5px;
|
||||
color:$col_main_1;
|
||||
margin:0;
|
||||
@@ -103,6 +135,13 @@ img {
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$fromColor', endColorstr='$ToColor',GradientType=1 );
|
||||
}
|
||||
|
||||
@mixin round($TopLeft, $TopRight, $BottomLeft, $BottomLeft) {
|
||||
-moz-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
|
||||
-webkit-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
|
||||
-khtml-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
|
||||
border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
|
||||
}
|
||||
|
||||
/* Classes */
|
||||
|
||||
.round_top {
|
||||
@@ -185,21 +224,21 @@ img {
|
||||
.error, .error a {
|
||||
color:$col_error;
|
||||
border-color:$col_error;
|
||||
font-size:14px;
|
||||
font-size:$size_vbig;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.warning, .warning a {
|
||||
color:$col_warning;
|
||||
border-color:$col_warning;
|
||||
font-size:13px;
|
||||
font-size:$size_vbig;
|
||||
font-style:italic;
|
||||
}
|
||||
|
||||
.success, .success a {
|
||||
color:$col_success;
|
||||
border-color:$col_success;
|
||||
font-size:13px;
|
||||
font-size:$size_vbig;
|
||||
}
|
||||
|
||||
.default_text {
|
||||
@@ -209,10 +248,9 @@ img {
|
||||
a.button {
|
||||
padding:7px;
|
||||
margin-right:5px;
|
||||
background:$col_main_2;
|
||||
font-size:12px;
|
||||
background:$col_main_3;
|
||||
font-size:$size_big;
|
||||
cursor:pointer;
|
||||
border:1px solid $col_main_1;
|
||||
/*position:relative;*/
|
||||
display:inline-block;
|
||||
}
|
||||
@@ -300,19 +338,18 @@ a[href^="table"].internal_link span.item {
|
||||
|
||||
.author_box {
|
||||
padding:5px 10px;
|
||||
border:1px solid $col_main_1;
|
||||
color:$col_main_1;
|
||||
font-style:italic;
|
||||
font-size:12px;
|
||||
font-size:$size_big;
|
||||
}
|
||||
.author_box:nth-child(odd) {
|
||||
background:$col_main_3;
|
||||
background:$col_none;
|
||||
}
|
||||
.author_box:nth-child(even) {
|
||||
background:$col_main_2;
|
||||
background:$col_main_4;
|
||||
}
|
||||
.author_box:hover {
|
||||
border-color:$col_hover_1;
|
||||
.author_box:hover a {
|
||||
color:$col_hover_1;
|
||||
}
|
||||
|
||||
.author_box a {
|
||||
@@ -329,7 +366,7 @@ a[href^="table"].internal_link span.item {
|
||||
.author_box span.description {
|
||||
font-weight:bold;
|
||||
font-style:normal;
|
||||
font-size:13px;
|
||||
font-size:$size_vbig;
|
||||
}
|
||||
|
||||
.author_box span.rank {
|
||||
@@ -340,9 +377,6 @@ a[href^="table"].internal_link span.item {
|
||||
.standalone .author_box {
|
||||
margin-top:10px;
|
||||
}
|
||||
.standalone .author_box:hover {
|
||||
color:$col_hover_1;
|
||||
}
|
||||
|
||||
.hide, .mobile {
|
||||
display:none;
|
||||
@@ -354,18 +388,17 @@ a[href^="table"].internal_link span.item {
|
||||
margin-top:5px;
|
||||
margin-bottom:5px;
|
||||
padding:10px;
|
||||
background:$col_main_2;
|
||||
background:$col_main_3;
|
||||
color:$col_main_1;
|
||||
border: 2px solid $col_main_1;
|
||||
}
|
||||
.step_box:nth-child(even) {
|
||||
background:$col_main_3;
|
||||
background:$col_main_4;
|
||||
}
|
||||
|
||||
.step_box input, .step_box textarea, .step_box select, .step_box .read.textarea, .step_box .read.input {
|
||||
margin-top:10px;
|
||||
background:$col_none;
|
||||
font-size:14px;
|
||||
font-size:$size_vbig;
|
||||
border-width:1px;
|
||||
}
|
||||
.step_box input:disabled, .step_box textarea:disabled, .step_box select:disabled, .step_box input:hover:disabled, .step_box textarea:hover:disabled, .step_box select:hover:disabled {
|
||||
@@ -378,7 +411,6 @@ a[href^="table"].internal_link span.item {
|
||||
height:200px;
|
||||
padding:5px;
|
||||
background:$col_none;
|
||||
border:1px solid $col_main_1;
|
||||
}
|
||||
.step_box .read.textarea, .step_box .read.input {
|
||||
border-color:$col_main_2;
|
||||
@@ -388,7 +420,7 @@ a[href^="table"].internal_link span.item {
|
||||
background-color:$col_main_3;
|
||||
}
|
||||
.step_box:nth-child(even) .read.textarea {
|
||||
background-color:$col_main_2;
|
||||
background-color:$col_main_4;
|
||||
}
|
||||
.step_box .read.input {
|
||||
background-color:$col_main_2;
|
||||
@@ -462,7 +494,6 @@ a[href^="table"].internal_link span.item {
|
||||
height:100%;
|
||||
height:210px;
|
||||
z-index:2;
|
||||
border:1px solid $col_main_1;
|
||||
background:$col_none;
|
||||
text-align:center;
|
||||
}
|
||||
@@ -498,7 +529,7 @@ a[href^="table"].internal_link span.item {
|
||||
}
|
||||
|
||||
.uploader_item_size, .uploader_item_cancel {
|
||||
font-size:12px;
|
||||
font-size:$size_big;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
@@ -515,7 +546,7 @@ a.uploader_item_cancel {
|
||||
|
||||
|
||||
.uploader_box .image_action {
|
||||
font-size:12px;
|
||||
font-size:$size_big;
|
||||
}
|
||||
|
||||
.uploader_box .image_action input {
|
||||
|
||||
Reference in New Issue
Block a user