source: main/trunk/model-sites-dev/von-sparql/textedit-regex/css/style.css@ 29739

Last change on this file since 29739 was 29739, checked in by davidb, 9 years ago

Web application used to edit text using programming by demonstration (PBD)

File size: 1.4 KB
Line 
1body{
2 margin: 0px;
3}
4
5#divHeader{
6 width:100%;
7 height: 50px;
8 color: #d3d3d3;
9 background-color: #4D6588;
10 text-align: center;
11 vertical-align: middle;
12 border-bottom: 1px solid gray;
13
14}
15
16#divSidebar{
17 height: 100%;
18 float:left;
19 background-color: #A3B0C3;
20 width: 300px;
21 overflow-x: scroll;
22 border-right: 1px solid gray;
23}
24#textMain{
25 width: 100%;
26 height: 400px;
27 font-size: 1em;
28 resize: none;
29}
30
31#divOutput{
32 background-color: #EEE;
33 width:100%;
34 height: 200px;
35 clear:left;
36 float: left;
37 margin-top: 20px;
38 overflow-x: scroll;
39 font-size: .9em;
40 padding: 5px;
41}
42
43#divEditor{
44 padding: 20px;
45 height: 400px;
46 overflow: hidden;
47 width:60%;
48}
49
50#divEditorControls{
51 background-color: #EEE;
52 float:left;
53 height: auto;
54 padding-left: 5px;
55 padding: 10px;
56 width:auto;
57}
58
59#divTest{
60 padding-top: 10px;
61 clear: left;
62}
63
64
65.outlined{
66 border: 1px solid black;
67 padding: 3px;
68}
69
70.controls{
71 margin-top: 3px;
72 margin-right: 10px;
73 display: inline-block;
74 width: 180px;
75}
76
77.circle{
78 display:inline-block;
79 border-radius: 50%;
80}
81
82.waiting{
83 width: 1em;
84 height: 1em;
85 background: #FFE7E3;
86 border: 1px solid #0E0604;
87}
88
89.smallLabel {
90 font-size:.8em;
91 padding-left: 5px;
92 font-family: sans-serif;
93}
94.recording{
95 width: 1em;
96 height: 1em;
97 background: #FF758F;
98 border: 1px solid #0E0604;
99}
Note: See TracBrowser for help on using the repository browser.