| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- body {
- padding-top: 60px;
- }
- .appWidget {
- margin: 10px auto 5px auto;
- background-color: #FFFFFF;
- }
- .appWidgetHeader {
- background: #FAFAFA;
- border: 1px solid #D5D5D5;
- -webkit-border-top-left-radius: 4px;
- -webkit-border-top-right-radius: 4px;
- -moz-border-radius-topleft: 4px;
- -moz-border-radius-topright: 4px;
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- -webkit-background-clip: padding-box;
- padding-left: 10px;
- }
- .appWidget:nth-child(even) .appWidgetHeader{
- background: #F0F0F0;
- }
- .appWidgetHeader:hover, .appWidget:nth-child(even) .appWidgetHeader:hover {
- background: #E8F1FB;
- }
- .appWidgetHeader p {
- color: #333;
- }
- .appWidgetContent {
- border: 1px solid #D5D5D5;
- border-top: none;
- -webkit-border-bottom-left-radius: 4px;
- -webkit-border-bottom-right-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
- -moz-border-radius-bottomright: 4px;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- padding: 10px;
- max-height: 340px;
- overflow-y: scroll;
- }
- .appWidgetContent h6 {
- padding: 10px;
- margin: 0;
- }
- .appWidgetContent pre {
- border:0;
- }
- .shortcuts {
- text-align: center;
- }
- .shortcuts .shortcut {
- width: 80px;
- display: inline-block;
- padding: 12px 0;
- margin: 1em .9% 1em;
- vertical-align: top;
- text-decoration: none;
- border-radius: 5px;
- cursor: pointer;
- }
- .shortcuts .shortcut .shortcutIcon {
- margin-right: .25em;
- margin-bottom: .25em;
- font-size: 60px;
- color: #888;
- }
- .shortcuts .shortcut .shortcutIcon:hover {
- color: #333;
- }
- .availableDemos {
- color: #888;
- padding-left: 6px;
- font-size: 12px;
- text-align: left;
- margin-top: 14px;
- }
- .demoProgress {
- height: 2px;
- }
- .running {
- background-color: #faa732;
- border-left: 2px solid #faa732;
- }
- .succeeded {
- background-color: #5eb95e;
- border-left: 2px solid #5eb95e;
- }
- .failed {
- background-color: #dd514c;
- border-left: 2px solid #dd514c;
- }
- .action {
- background: #F5F5F5;
- }
- .tab-content, .tab-pane {
- overflow-x: hidden;
- }
|