aboutsummaryrefslogtreecommitdiffstats
path: root/theme.css
blob: 3653714ca1c69b19cd32f6a30a55f1d7510a1585 (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
81
82
83
84
85
html {
    width: 100%;
}

body {
    width: 1024px;
    margin: auto;
}

#game {
    margin-top: 20px;
    display: flex;
}

#players {
    width: 245px;
    list-style-type: none;
    padding: 0;
    margin: 5px 0px 5px 0px;
    height: 400px;
    overflow: auto;
}

#slide {
    width: 305px;
}

#control {
    padding-left: 10px;
}

#control img {
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#wait {
    width: 255px;
}

#p_history {
}

#surrender {
    margin-top: 20px;
    width: 255px;
}

#summary {
    width: 100%;
    padding: 5px;
}

.bar {
    width: 290px;
    background: #3e3e3e;
    height: 10px;
    padding: 4px;
    margin-bottom: 15px;
}

#stamina {
    width: 2%;
    background: darkseagreen;
    height: 100%;
    transition: 'width 500ms ease 0s';
}

#anger {
    width: 31%;
    background: crimson;
    height: 100%;
}

#time {
    width: 2%;
    background: lightblue;
    height: 100%;
}

#last_turn {
    padding: 10px;
}