Changed the Style of GUI
[holmes/rule-management.git] / rulemgt-frontend / src / assets / framework / browser / css / doc_widgets.css
1 ul.doc-example {
2   list-style-type: none;
3   position: relative;
4   font-size: 14px;
5 }
6
7 ul.doc-example > li {
8   border: 2px solid gray;
9   border-radius: 5px;
10   -moz-border-radius: 5px;
11   -webkit-border-radius: 5px;
12   background-color: white;
13   margin-bottom: 20px;
14 }
15
16 ul.doc-example > li.doc-example-heading {
17   border: none;
18   border-radius: 0;
19   margin-bottom: -10px;
20 }
21
22 span.nojsfiddle {
23   float: right;
24   font-size: 14px;
25   margin-right:10px;
26   margin-top: 10px;
27 }
28
29 form.jsfiddle {
30   position: absolute;
31   right: 0;
32   z-index: 1;
33   height: 14px;
34 }
35
36 form.jsfiddle button {
37   cursor: pointer;
38   padding: 4px 10px;
39   margin: 10px;
40   background-color: #FFF;
41   font-weight: bold;
42   color: #7989D6;
43   border-color: #7989D6;
44   -moz-border-radius: 8px;
45   -webkit-border-radius:8px;
46   border-radius: 8px;
47 }
48
49 form.jsfiddle textarea, form.jsfiddle input {
50   display: none;
51 }
52
53 li.doc-example-live {
54   padding: 10px;
55   font-size: 1.2em;
56 }
57
58 div.syntaxhighlighter {
59   padding-bottom: 1px !important; /* fix to remove unnecessary scrollbars http://is.gd/gSMgC */
60 }
61
62 /* TABS - tutorial environment navigation */
63
64 div.tabs-nav {
65   height: 25px;
66   position: relative;
67 }
68
69 div.tabs-nav ul li {
70   list-style: none;
71   display: inline-block;
72   padding: 5px 10px;
73 }
74
75 div.tabs-nav ul li.current a {
76   color: white;
77   text-decoration: none;
78 }
79
80 div.tabs-nav ul li.current {
81   background: #7989D6;
82   -moz-box-shadow: 4px 4px 6px #48577D;
83   -moz-border-radius-topright: 8px;
84   -moz-border-radius-topleft: 8px;
85   box-shadow: 4px 4px 6px #48577D;
86   border-radius-topright: 8px;
87   border-radius-topleft: 8px;
88   -webkit-box-shadow: 4px 4px 6px #48577D;
89   -webkit-border-top-right-radius: 8px;
90   -webkit-border-top-left-radius: 8px;
91   border-top-right-radius: 8px;
92   border-top-left-radius: 8px;
93 }
94
95 div.tabs-content {
96   padding: 4px;
97   position: relative;
98   background: #7989D6;
99   -moz-border-radius: 8px;
100   border-radius: 8px;
101   -webkit-border-radius: 8px;
102 }
103
104 div.tabs-content-inner {
105   margin: 1px;
106   padding: 10px;
107   background: white;
108   border-radius: 6px;
109   -moz-border-radius: 6px;
110   -webkit-border-radius: 6px;
111 }
112
113
114 /* Tutorial Nav Bar */
115
116 #tutorial-nav {
117   margin: 0.5em 0 1em 0;
118   padding: 0;
119   list-style-type: none;
120   background: #7989D6;
121
122   -moz-border-radius: 15px;
123   -webkit-border-radius: 15px;
124   border-radius: 15px;
125
126   -moz-box-shadow: 4px 4px 6px #48577D;
127   -webkit-box-shadow: 4px 4px 6px #48577D;
128   box-shadow: 4px 4px 6px #48577D;
129 }
130
131
132 #tutorial-nav li {
133   display: inline;
134 }
135
136
137 #tutorial-nav a:link, #tutorial-nav a:visited {
138   font-size: 1.2em;
139   color: #FFF;
140   text-decoration: none;
141   text-align: center;
142   display: inline-block;
143   width: 11em;
144   padding: 0.2em 0;
145 }
146
147
148 #tutorial-nav a:hover {
149   color: #000;
150 }