source: Dev/branches/rest-dojo-ui/client/rft/css/main.css @ 288

Last change on this file since 288 was 288, checked in by hendrikvanantwerpen, 13 years ago

[Client] MultipleChoiceWidget? for editing multiple choice questions
[Client] Move templates to separate directories.
[Client] Created QuestionWidget? to edit complete questions.
[Client] Fixed startup race condition where parsing was started before all classes were loaded.

File size: 739 bytes
Line 
1html,body {
2    width: 100%;
3    height: 100%;
4}
5
6.mainHeader {
7    display: inline-block;
8    width: 100%;
9    border-bottom: 1px solid;
10}
11
12.mainMenu {
13    width: 100%;
14}
15
16.menuItem {
17    margin: 0px 5px 0px 5px;
18}
19
20#content {
21    display: block;
22    clear: both;
23}
24
25.loginLabel {
26    float: left;
27    clear: left;
28    width: 100px;
29}
30
31.loginInput {
32    float: left;
33    clear: right;
34    width: 150px;
35}
36
37.rftMultipleChoiceWidget {
38    display: table;
39}
40
41.rftMultipleChoiceWidget .row {
42    display: table-row;
43}
44
45.rftMultipleChoiceWidget .rowBox {
46    display: table-cell;
47}
48
49.rftMultipleChoiceWidget .rowText {
50    display: table-cell;
51    width: 100px;
52}
53
54.rftMultipleChoiceWidget .rowBtn {
55    display: table-cell;
56    width: 30px;
57}
Note: See TracBrowser for help on using the repository browser.