aboutsummaryrefslogtreecommitdiff
path: root/res/default.css
blob: 97af1448beafdcd5cf4a457c9585e0eda3686e96 (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
body {
    padding: 0;
    margin: 0;
}


img {
    vertical-align: middle;
}

#content img {
	width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

a.highlight {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.button {
    display: block;
    background: #eee;
    margin: 0;
    padding: 10px;
}

.button:hover {
    background: #ddd;
}

.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

.img-circle {
    border-radius: 50%;
}

.send-channel {
    margin-left: 30px;
}

#content {
    margin: 10px auto;
    line-height: 1.5em;
    width: 70%;
}