File: style.css

package info (click to toggle)
qhttpengine 0.1.0%2Bdfsg1-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 524 kB
  • sloc: cpp: 2,070; javascript: 39; makefile: 21
file content (53 lines) | stat: -rw-r--r-- 658 bytes parent folder | download | duplicates (2)
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
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-color: #dec;
    margin: 0;
}

#input {
    height: 60px;
    width: 100%;
}

.footer {
    background-color: #ac9;
    box-shadow: 0 0 5px #333;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer textarea {
    background-color: #dec;
    border: none;
    border-radius: 4px;
    padding: 4px;
}

.messages {
    padding: 10px;
}

.message {
    background-color: #efd;
    border-radius: 4px;
    font-size: 10pt;
    margin-bottom: 4px;
    padding: 8px 16px;
}

.message.system {
    color: #777;
}

.spacer {
    height: 80px;
}