-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
103 lines (83 loc) · 1.45 KB
/
style.css
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
* {margin: 0; padding: 0;}
html, body, #main {
height: 100%;
width: 100%;
}
#main {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
#lootbox {
position: fixed;
width: 100%;
text-align: center;
font-size: large;
}
#char {
width: 100%;
text-align: center;
height: 80%;
margin: 0 auto;
position: fixed;
bottom: 0;
}
#char img {
height: 100%;
}
#actions {
position: fixed;
bottom: 50%;
width: 100%;
text-align: center;
margin-top: 1em;
}
#actions .action-btn {
cursor: pointer;
line-height: 3em;
display: inline-block;
color: #ddd;
width: 10em;
height: 3em;
font-size: x-large;
background: #f55;
border: solid 2px #800;
border-radius: 1em;
}
#chat {
position: fixed;
margin-left: 1em;
width: 40%;
height: 40%;
}
#chat .message {
display: none;
max-width: 80%;
width: fit-content;
padding: 1em;
font-weight: bold;
margin-top: 1em;
border: solid 2px #000;
border-radius: 1em;
}
#chat .message .message-text {
}
#chat .message-in {
background: #faa;
color: #422;
}
#chat .message-out {
background: #aaf;
color: #224;
margin-left: auto;
}
#chat .message .message-text-active {
float: left;
}
#chat .message .message-reply-button {
margin-left: 1em;
display: inline-block;
font-size: x-large;
cursor: pointer;
clear: both;
}