-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
1,639 additions
and
1,137 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,118 @@ | ||
@charset "UTF-8"; | ||
/* HTML5 ✰ Boilerplate | ||
* | ||
* What follows is the result of much research on cross-browser styling. | ||
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal, | ||
* Kroc Camen, and the H5BP dev community and team. | ||
* | ||
* Detailed information about this CSS: h5bp.com/css | ||
* | ||
* ==|== normalize ========================================================== */ | ||
/* ============================================================================= | ||
* HTML5 display definitions | ||
* ========================================================================== */ | ||
body { | ||
font-size: 13px; | ||
line-height: 1.231; | ||
font-family: sans-serif; | ||
color: #000000; | ||
background-color: #f1f2f3; | ||
padding: 0 5%; | ||
text-align: justify; | ||
font-size: 13px; | ||
line-height: 1.231; | ||
font-family: sans-serif; | ||
color: #000000; | ||
background-color: #f1f2f3; | ||
padding: 0 5%; | ||
text-align: justify; | ||
} | ||
|
||
.loginbox { | ||
position: absolute; | ||
background-color: #9D97B6; | ||
border: 1px thin; | ||
float: center; | ||
border-radius: 10px; | ||
padding: 5% 10%; | ||
margin: 5% 28%; | ||
position: absolute; | ||
min-width: 300px; | ||
max-width: 500px; | ||
background-color: #7DCE8F; | ||
border: 1px thin; | ||
border-radius: 10px; | ||
padding: 1% 1%; | ||
margin: 15% 30%; | ||
} | ||
|
||
positive { | ||
color: green; | ||
.fieldcenter { | ||
text-align: right; | ||
} | ||
|
||
negative { | ||
color: red; | ||
input:focus, textarea:focus { | ||
outline: 0; | ||
border-color: #468854; | ||
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px #c4ae30; | ||
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); | ||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px #c4ae30; | ||
} | ||
|
||
h2 { | ||
|
||
input, textarea { | ||
margin: 0 0 0 10px; | ||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s; | ||
-moz-transition: border linear 0.2s, box-shadow linear 0.2s; | ||
-ms-transition: border linear 0.2s, box-shadow linear 0.2s; | ||
-o-transition: border linear 0.2s, box-shadow linear 0.2s; | ||
transition: border linear 0.2s, box-shadow linear 0.2s; | ||
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); | ||
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); | ||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.container { | ||
display: table; | ||
width: 100%; | ||
border-collapse: collapse; | ||
input { | ||
display: inline-block; | ||
height: 25px; | ||
margin: 4px; | ||
line-height: 18px; | ||
border: 1px solid #cccccc; | ||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
} | ||
|
||
.heading { | ||
font-weight: bold; | ||
display: table-row; | ||
background-color: #50D67B; | ||
text-align: center; | ||
line-height: 25px; | ||
font-size: 14px; | ||
font-family: georgia; | ||
color: #fff; | ||
label { | ||
display: inline-block; | ||
padding-right: 3px; | ||
} | ||
|
||
.table-row { | ||
display: table-row; | ||
text-align: center; | ||
box2 { | ||
text-align: right; | ||
width: 280px; | ||
} | ||
|
||
.col { | ||
display: table-cell; | ||
border: 1px solid #CCC; | ||
padding: 1% 1% 1% 1%; | ||
.title { | ||
padding-right: 22px; | ||
} | ||
|
||
input:focus,textarea:focus { | ||
outline: 0; | ||
border-color: #c4ae30; | ||
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px #c4ae30; | ||
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px | ||
rgba(82, 168, 236, 0.6); | ||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px #c4ae30; | ||
.ui-tabs { | ||
position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ | ||
padding: .2em; | ||
} | ||
|
||
input,textarea { | ||
margin: 0 0 0 10px; | ||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s; | ||
-moz-transition: border linear 0.2s, box-shadow linear 0.2s; | ||
-ms-transition: border linear 0.2s, box-shadow linear 0.2s; | ||
-o-transition: border linear 0.2s, box-shadow linear 0.2s; | ||
transition: border linear 0.2s, box-shadow linear 0.2s; | ||
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); | ||
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); | ||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); | ||
.ui-tabs .ui-tabs-nav { | ||
margin: 0; | ||
padding: .2em .2em 0; | ||
} | ||
.ui-tabs .ui-tabs-nav li { | ||
list-style: none; | ||
float: left; | ||
position: relative; | ||
top: 0; | ||
margin: 1px .2em 0 0; | ||
border-bottom-width: 0; | ||
padding: 0; | ||
white-space: nowrap; | ||
} | ||
.ui-tabs .ui-tabs-nav .ui-tabs-anchor { | ||
float: left; | ||
padding: .5em 1em; | ||
text-decoration: none; | ||
} | ||
.ui-tabs .ui-tabs-nav li.ui-tabs-active { | ||
margin-bottom: -1px; | ||
padding-bottom: 1px; | ||
} | ||
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, | ||
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, | ||
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor { | ||
cursor: text; | ||
} | ||
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { | ||
cursor: pointer; | ||
} | ||
.ui-tabs .ui-tabs-panel { | ||
display: block; | ||
border-width: 0; | ||
padding: 1em 1.4em; | ||
background: none; | ||
} | ||
.ui-tooltip { | ||
padding: 8px; | ||
position: absolute; | ||
z-index: 9999; | ||
max-width: 300px; | ||
-webkit-box-shadow: 0 0 5px #aaa; | ||
box-shadow: 0 0 5px #aaa; | ||
} | ||
body .ui-tooltip { | ||
border-width: 2px; | ||
} | ||
|
||
input { | ||
display: inline-block; | ||
height: 25px; | ||
margin: 4px; | ||
font-size: 13px; | ||
line-height: 18px; | ||
color: gray; | ||
border: 1px solid #cccccc; | ||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
a { | ||
color: #075A39; | ||
} |
Oops, something went wrong.