-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (78 loc) · 2.3 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
/* -------------------------------------------------
Reset
------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline; }
/* -------------------------------------------------
Layout
------------------------------------------------- */
body, html {
height: 100%;
width: 100%; }
html {
background-color: rgba(50, 115, 220, 0.01);
/*background: url(img/dota-bg.jpg) center/cover no-repeat;*/
overflow: hidden;
}
/* -------------------------------------------------
Page general styles
------------------------------------------------- */
.header {
color: #fff;
text-align: center;
font-family: 'Roboto', sans-serif;
font-weight: 100;
font-size: 32px;
padding-top: 42px; }
/* -------------------------------------------------
Chat
------------------------------------------------- */
.chat {
position: fixed;
bottom: 80px;
text-align: center;
left: 0;
right: 0; }
.chat--messages {
display: inline-block;
text-align: left;
width: 370px; }
.chat-msg {
font-family: 'Source Sans Pro', sans-serif;
color: #fff;
font-weight: bold;
text-shadow: 0 1px 1px #000;
font-size: 16px;
opacity: 0;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s; }
.chat-msg * {
display: inline-block; }
.chat-msg.active {
opacity: 1; }
.chat-msg--image {
margin-right: 15px;
width: 52px;
vertical-align: middle; }
.chat-msg--name {
color: #eb67a1; }
.chat-msg--to-whom {
margin-right: 6px; }
.chat-msg--text {
padding-left: 28px;
position: relative; }
.chat-msg--text:before {
content: '';
background: url(img/chat-pointer.png) center no-repeat;
position: absolute;
left: 7px;
top: 2px;
width: 18px;
height: 21px;
opacity: .8; }