To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / core.css

History | View | Annotate | Download (2.57 KB)

1
/* structure.css
2
 * Define the structure for classes and objects in HTML
3
 */
4

    
5
div.title {
6
        width: 100%;
7
        height: 50px;
8
        margin-bottom: 10px;
9
        font-size: 2em;
10
}
11

    
12
div.indicator-box {
13
        position: absolute;
14
        left: 150px;
15
        top: 10px;
16
        width: 300px;
17
        height: 60px;
18
        padding: 20px;
19
        border-radius: 10px;
20
        background-color: rgb(100,200,200);
21
}
22

    
23
div.comment-div {
24
        border:1px solid #444444;
25
        max-width: 600px;
26
        min-width: 400px;
27
        float: left;
28
        margin: 5px 10px 5px 5px;
29
        height: 90px;
30
    border-radius: 10px;
31
}
32

    
33
div.comment-div span {
34
        margin-left: 15px;
35
}
36

    
37
div.popupHolder {
38
        width: 500px;
39
        min-height: 250px;
40
        max-height: 400px;
41
        background-color: #fff;
42
        border-radius: 10px;
43
        box-shadow: 0px 0px 50px #000;
44
        z-index: 2;
45
        position: fixed;
46
}
47

    
48
div#popupContent {
49
    margin-top: 20px;
50
    margin-bottom: 5px;
51
}
52

    
53
div#popupTitle {
54
    width: inherit;
55
    min-height: 25px;
56
    max-height: 250px;
57
    overflow: auto;
58
    margin-bottom: 5px;
59
}
60

    
61
div#popupTitleHolder{
62
    padding: 8px;
63
}
64

    
65
#popupTitle {
66
    white-space: pre-line;
67
}
68

    
69
div#popupResponse {
70
    width: inherit;
71
    min-height: 50px;
72
    max-height: 320px;
73
    overflow: auto;
74
    position: relative;
75
}
76

    
77
button.popupButton {
78
        /* Button for popup window
79
         */
80
        width: 50px;
81
        height: 25px;
82
        position: absolute;
83
        border-radius: 5px;
84
        border: #444;
85
        border-width: 1px;
86
        border-style: solid;
87
        background-color: #fff;
88
}
89

    
90
button#popup-proceed {
91
    bottom: 10px;
92
    right: 10px;
93
}
94

    
95
button#popup-previous {
96
    bottom: 10px;
97
    left: 10px;
98
}
99

    
100
div.testHalt {
101
        /* Specify any colouring during the test halt for pre/post questions */
102
        background-color: rgba(0,0,0,0.5);
103
        /* Don't mess with this bit */
104
        z-index: 2;
105
        width: 100%;
106
        height: 100%;
107
        position: fixed;
108
        left: 0px;
109
        top: 0px;
110
}
111

    
112
textarea.trackComment {
113
        max-width: 594px;
114
        min-width: 350px;
115
        max-height: 60px;
116
    resize: none;
117
}
118

    
119
div.playhead {
120
        width: 500px;
121
        height: 50px;
122
        background-color: #eee;
123
        border-radius: 10px;
124
        padding: 10px;
125
}
126

    
127
div.playhead-scrub-track {
128
        width: 100%;
129
        height: 10px;
130
        border-style: solid;
131
        border-width: 1px;
132
}
133

    
134
div#playhead-scrubber {
135
        width: 10px;
136
        height: 10px;
137
        position: relative;
138
        background-color: #000;
139
}
140

    
141
div#master-volume-holder {
142
    width: 250px;
143
    float: left;
144
    border: black 1px solid;
145
    border-radius: 5px;
146
    padding: 5px;
147
}
148

    
149
input#master-volume-control {
150
    width: 200px;
151
    height: 25px;
152
    float: left;
153
    margin: 0px;
154
    padding: 0px;
155
}
156

    
157
span#master-volume-feedback {
158
    width: 45px;
159
    height: 25px;
160
    margin-left: 5px;
161
    float: left;
162
}
163

    
164
div.error-colour {
165
    background-color: #FF8F8F;
166
}
167
button.error-colour {
168
    background-color: #FF8F8F;
169
    color: black;
170
}