summaryrefslogtreecommitdiff
path: root/www/style.css
blob: 80c25c53e4466da641483ba27288f4297f436798 (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
html {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    background: #EEE;
}

header {
    font-size: 200%;
    background: #ddd;
    padding: 10px;
}

header img {
    vertical-align: middle;
}

.btn {
    padding: 10px;
    background: white;
    border: solid 1px #999;
    border-radius: 7px;
}

.btn:hover {
    background: #EEE;
}

.btn.primary {
    background: #6ACC62;
}

.btn.primary:hover {
    background: #6FD166;
}

.card {
    margin: 25px;
    padding: 0px 10px;
    border: solid 1px white;
    border-radius: 7px;
    background: white;
    position: relative;
}

.card .actions {
    text-align: right;
}

.card img {
    vertical-align: middle;
}

.sadflower {
    text-align: center;
    font-style: italic;
}

.level {
    margin-left: 20px;
    font-weight: bold;
    font-size: 200%;
}

.edit {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.detail {
    font-size: small;
    font-style: italic;
    color: #555;
}