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

img {
    vertical-align: middle;
}

a {
    text-decoration: none;
}

.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: 0 auto;
    line-height: 1.5em;
    width: 70%;
}