-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
129 lines (129 loc) · 2.16 KB
/
styles.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url('https://fonts.googleapis.com/css?family=Oswald:400,700|Droid+Serif:400,400italic');
body {
background-color: #ecf0e7;
font-family: "Droid Serif", serif;
font-size: 14px;
color: #8ea7c2;
}
a,
a:focus,
a:hover,
a:visited {
color: #b8cca6;
}
h1 {
font-family: "Oswald", sans-serif;
font-weight: bold;
text-transform: uppercase;
text-align: left;
margin: 15px 0px;
font-size: 3em;
}
.container {
background-color: #e1e1e6;
margin: 0px auto;
padding: 0px;
max-width: 700px;
}
.row {
margin: 2px 0px;
padding: 5px;
line-height: 50px;
}
.menu {
position: absolute;
right: 0px;
bottom: 5px;
color: #5c5457;
font-family: "Oswald", sans-serif;
font-size: 0.8em;
font-weight: bold;
text-transform: uppercase;
}
.menu #online .circle {
background-color: #b8cca6;
}
.menu #offline .circle {
background-color: #8ea7c2;
}
.menu .active,
.menu .selector:hover {
width: 65px !important;
transition: width 0.4s linear;
cursor: pointer;
}
.menu .selector {
line-height: 20px;
height: 20px;
background-color: #e1e1e6;
padding: 0px 5px;
margin: 2px 0px;
width: 20px;
overflow: hidden;
float: right;
clear: right;
transition: width 0.4s linear;
}
.menu .selector .circle {
height: 10px;
width: 10px;
border-radius: 50%;
background-color: #5c5457;
border: 1px solid #5c5457;
float: left;
margin: 5px 5px 5px 0px;
}
.menu .selector p {
float: right;
margin: 0px;
}
#header,
#footer {
position: relative;
background-color: #5c5457;
color: #e1e1e6;
padding: 5px 65px 5px 15px;
}
.logo {
max-width: 50px;
max-height: 50px;
border-radius: 50%;
border: 3px solid #e1e1e6;
}
.offline {
background-color: #4a5e82;
}
.online {
background-color: #b8cca6;
color: #5c5457;
}
.online a,
.online a:focus,
.online a:hover,
.online a:visited {
color: #4a5e82;
}
#streaming {
font-style: italic;
}
#name,
#streaming {
line-height: 25px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
text-align: center;
}
@media (min-width: 768px) {
.container {
margin: 10px auto;
}
#name,
#streaming {
line-height: 50px;
height: 50px;
}
#header {
padding-left: 65px;
}
}