File: style.css

package info (click to toggle)
python-falcon 4.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,172 kB
  • sloc: python: 33,608; javascript: 92; sh: 50; makefile: 50
file content (48 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (3)
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
body {
    margin: 0px;
    padding: 0px;
    min-width: 640px;
    background-color: black;
    font-family: sans-serif;
    color: #f0ad4e;
}

.header {
    padding: 1em;
    background-color: #232323;
    text-align: center;
    font-size: larger;
}

.column {
    float: left;
    width: 50%;
}

.terminal {
    padding: 1em;
}

.log {
    clear: both;
    padding: 1em;
    font-family: monospace;
}

.message {
    margin: 0.5em 0.5em 1.5em 0.5em;
    padding: 0.5em;
    border: 1px dashed #f0ad4e;
}

.sse {
    color: #729fcf;
}

.ws1 {
    color: #edd400;
}

.ws2 {
    color: #c17d11;
}