| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- html {
- font: 14px "Roboto Regular", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
- background: url(Images/background-2-small.png) repeat #F7F7F7;
- padding: 0;
- }
- body {
- margin: 0;
- }
- h1, h2, h3, h4, h5, h6 {
- color: #009688;
- }
- .homeContainer {
- width: 100%;
- margin: 0;
- }
- .functionNavigationContainer {
- width: 270px;
- overflow: auto;
- background-color: #FAFAFA;
- border: 1px solid #D9D9D9;
- float: left;
- padding: 0;
- }
- .functionContentContainer {
- width: 100%;
- padding: 0;
- }
- .functionHeader {
- width: 100%;
- }
- .functionHeader > .headerIcon {
- width: 24px;
- height: 24px;
- }
- .functionHeader > .controlIcon {
- width: 16px;
- height: 16px;
- float: right;
- cursor: pointer;
- margin: 0 6px;
- }
- .functionHeader > .headerText {
- line-height: 28px;
- vertical-align: top;
- margin-left: 16px;
- }
- .editFormWrapper {
- padding: 12px 12px 18px;
- }
- .popupButtonPanel {
- width: 100%;
- background-color: #e5e5e5;
- border-top: 1px solid #009688;
- overflow: auto;
- }
- .devExPopupPanelButton {
- margin: 6px 8px 6px 0;
- }
- .globalFooter {
- overflow: auto;
- min-height: 48px;
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- color: white;
- line-height: 46px;
- -webkit-box-shadow: 0px -7px 12px -8px rgba(0,0,0,0.75);
- -moz-box-shadow: 0px -7px 12px -8px rgba(0,0,0,0.75);
- box-shadow: 0px -7px 12px -8px rgba(0,0,0,0.75);
- border-top: 1px solid #009688;
- /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c0c0c0+0,c0c0c0+100&0.8+0,0.8+100 */
- background: url(Images/footer-1-full.jpg) #F7F7F7;
- background-size: cover;
- }
- .globalFooter .seperator {
- width: 1px;
- background: white;
- height: 30px;
- float: left;
- margin: 8px 16px;
- }
- .globalFooter .innerFooter {
- padding: 1px 20px;
- width: auto;
- }
- .innerFooter .linkContainer {
- float: left;
- }
- .innerFooter .userInfo {
- margin-top: 1px;
- float: left;
- }
- .innerFooter .versionInfo {
- margin-top: 1px;
- float: right;
- font-weight: bold;
- }
- .popupPanel {
- margin-top: 6px;
- margin-left: 18px;
- line-height: 26px;
- height: 32px;
- }
- .popupPanelItem {
- overflow: auto;
- width: auto;
- background: white;
- border-radius: 6px 6px 6px 6px;
- line-height: 20px;
- cursor: pointer;
- color: #808080;
- font-size: 13px;
- padding-right: 12px;
- display: inline-block;
- margin: 0 4px;
- -moz-border-radius: 6px 6px 6px 6px;
- -webkit-border-radius: 6px 6px 6px 6px;
- -webkit-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.6);
- -moz-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.6);
- box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.6);
- /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0.5+100;White+to+Transparent */
- background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 100%); /* FF3.6-15 */
- background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
- background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#80ffffff',GradientType=0 ); /* IE6-9 */
- }
- .popupPanelItem > img:first-of-type {
- width: 24px;
- height: 24px;
- margin: 4px 8px 0 12px;
- }
- .popupPanelItem > img:last-of-type {
- width: 16px;
- height: 16px;
- margin: 4px 0 4px 8px;
- }
- .popupPanelItem > span {
- vertical-align: top;
- line-height: 34px;
- }
|