summaryrefslogtreecommitdiffstats
path: root/rulemgt-frontend/src/assets/framework/browser/css/doc_widgets.css
blob: 587d5a7e3c99c24dcf5d9732778b42fda7f2adbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
ul.doc-example {
  list-style-type: none;
  position: relative;
  font-size: 14px;
}

ul.doc-example > li {
  border: 2px solid gray;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: white;
  margin-bottom: 20px;
}

ul.doc-example > li.doc-example-heading {
  border: none;
  border-radius: 0;
  margin-bottom: -10px;
}

span.nojsfiddle {
  float: right;
  font-size: 14px;
  margin-right:10px;
  margin-top: 10px;
}

form.jsfiddle {
  position: absolute;
  right: 0;
  z-index: 1;
  height: 14px;
}

form.jsfiddle button {
  cursor: pointer;
  padding: 4px 10px;
  margin: 10px;
  background-color: #FFF;
  font-weight: bold;
  color: #7989D6;
  border-color: #7989D6;
  -moz-border-radius: 8px;
  -webkit-border-radius:8px;
  border-radius: 8px;
}

form.jsfiddle textarea, form.jsfiddle input {
  display: none;
}

li.doc-example-live {
  padding: 10px;
  font-size: 1.2em;
}

div.syntaxhighlighter {
  padding-bottom: 1px !important; /* fix to remove unnecessary scrollbars http://is.gd/gSMgC */
}

/* TABS - tutorial environment navigation */

div.tabs-nav {
  height: 25px;
  position: relative;
}

div.tabs-nav ul li {
  list-style: none;
  display: inline-block;
  padding: 5px 10px;
}

div.tabs-nav ul li.current a {
  color: white;
  text-decoration: none;
}

div.tabs-nav ul li.current {
  background: #7989D6;
  -moz-box-shadow: 4px 4px 6px #48577D;
  -moz-border-radius-topright: 8px;
  -moz-border-radius-topleft: 8px;
  box-shadow: 4px 4px 6px #48577D;
  border-radius-topright: 8px;
  border-radius-topleft: 8px;
  -webkit-box-shadow: 4px 4px 6px #48577D;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

div.tabs-content {
  padding: 4px;
  position: relative;
  background: #7989D6;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

div.tabs-content-inner {
  margin: 1px;
  padding: 10px;
  background: white;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}


/* Tutorial Nav Bar */

#tutorial-nav {
  margin: 0.5em 0 1em 0;
  padding: 0;
  list-style-type: none;
  background: #7989D6;

  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;

  -moz-box-shadow: 4px 4px 6px #48577D;
  -webkit-box-shadow: 4px 4px 6px #48577D;
  box-shadow: 4px 4px 6px #48577D;
}


#tutorial-nav li {
  display: inline;
}


#tutorial-nav a:link, #tutorial-nav a:visited {
  font-size: 1.2em;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  width: 11em;
  padding: 0.2em 0;
}


#tutorial-nav a:hover {
  color: #000;
}