-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (68 loc) · 778 Bytes
/
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
body {
font-size: 3rem;
}
h1 {
font-size: 8rem;
}
.row {
margin-bottom: 30px;
}
.streams-container {
padding-left: 10px;
}
.streams {
list-style-type: none;
display: flex;
flex-wrap: wrap;
}
.stream {
flex: 1 1 100%;
display: flex;
margin-bottom: 100px;
opacity: 0.5;
}
.stream.live {
opacity: 1;
}
.stream > * {
flex: 1;
}
.icon {
flex: 1;
margin-right: 20px;
}
.icon img {
width: 250px;
}
.name {
flex: 2;
}
.status {
flex: 2;
}
.game {
font-weight: bold;
}
.game-status {
font-style: italic;
}
footer {
text-align: center;
}
@media (min-width: 1000px) {
body {
font-size: 2rem;
}
h1 {
font-size: 5rem;
}
.icon img {
width: 100px;
}
.name {
flex: 2;
}
.status {
flex: 4;
}
}