~marten-de-vries/justforlearning/test-code

« back to all changes in this revision

Viewing changes to static/style.css

  • Committer: Marten de Vries
  • Date: 2011-07-17 11:40:43 UTC
  • Revision ID: marten94@gmail.com-20110717114043-alhqvsdgmg3057zd
De-prototyped the code, added a user rights system, socketpolicy server is now started automatically.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
    along with Just For Learning.  If not, see <http://www.gnu.org/licenses/>.
20
20
*/
21
21
 
 
22
/* global */
 
23
html, body, #page {
 
24
        height:100%;
 
25
}
 
26
 
22
27
body {
23
 
        font-family: Ubuntu, sans-serif;
24
 
}
25
 
 
26
 
#userinfo {
27
 
        float:right;
28
 
}
29
 
 
30
 
#messages, #chat, #questions, #answers {
31
 
        padding:1em;
32
 
}
33
 
 
34
 
#messages {
35
 
        background-color:yellow;
36
 
}
37
 
#chat {
38
 
        background-color:aqua;
39
 
        float:right;
40
 
        clear:both;
41
 
}
42
 
#questions {
43
 
        background-color:lime;
44
 
        float:right;
45
 
}
46
 
#answers {
47
 
        background-color:orange;
48
 
        float:right;
49
 
}
 
28
        margin:1em;
 
29
}
 
30
 
50
31
#page {
51
32
        display:none;
52
33
}
 
34
 
53
35
#connectionclosed {
54
36
        display:none;
55
37
}
56
38
 
 
39
/* header */
 
40
#header {
 
41
        height:4em;
 
42
}
 
43
 
 
44
#userinfo {
 
45
        float:right;
 
46
}
 
47
 
 
48
/* content */
 
49
h2 {
 
50
        font-size:large;
 
51
        margin:0;
 
52
}
 
53
 
 
54
ul {
 
55
        padding:0;
 
56
        list-style-type:none;
 
57
}
 
58
 
 
59
#tabs, #classMessages {
 
60
        margin-bottom:1em;
 
61
}
 
62
 
 
63
#classMessages {
 
64
        padding:1em 1.5em;
 
65
}
 
66
 
 
67
/* footer */
 
68
#sourceLink {
 
69
        position:absolute;
 
70
        bottom:0.25em;
 
71
        right:0.25em;
 
72
}