summaryrefslogtreecommitdiff
path: root/css/codeq.css
blob: fa1107ba4e4fe3f2171a5d699b8161e42294654e (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
html {
    width: 100%;
    height: 100%;
    background-color: whitesmoke;
    padding: 0;
    margin: 0;
    border: none;
}

body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
    color: black;
    font-family: Trebuchet MS, Verdana, Tahoma, sans-serif;
    background-color: red;
}

#gui {
    width: 100%;
    height: 100%;
}

.block {
    width: 100%;
    min-height: 10%;
    background-color: #ddffdd;
}

nav {
    background-color: #e6db74;
}

nav > ul li {
    list-style: none;
    display: inline;
    padding: 0 10px;
}

/* console */
#console {
    font-size: 14px
}
#console div.jquery-console-inner {
    width:900px;
    height:200px;
    background:#333;
    padding:0.5em;
    overflow:auto
}
#console div.jquery-console-prompt-box {
    color:#fff;
    font-family:monospace;
}
#console div.jquery-console-focus span.jquery-console-cursor {
    background:#fefefe;
    color:#333;
    font-weight:bold
}
#console div.jquery-console-message-error {
    color:#ef0505;
    font-family:sans-serif;
    font-weight:bold;
    padding:0.1em;
}
#console div.jquery-console-message-value {
    color:#1ad027;
    font-family:monospace;
    padding:0.1em;
}
#console div.jquery-console-message-type {
    color:#52666f;
    font-family:monospace;
    padding:0.1em;
}
#console span.jquery-console-prompt-label {
    font-weight:bold
}
#console div.jquery-console-message {
    color: #ddffdd;
    font-family: monospace;
}