Newer
Older
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
.stream {
flex-grow: 1;
display: flex;
flex-direction: column;
background: var(--theme-primary);
min-height: 0;
overflow-y: auto;
.header {
display: flex;
align-items: center;
flex-shrink: 0;
height: 50px;
padding: 0 15px 0;
.container {
display: flex;
flex-direction: row;
flex-grow: 1;
align-items: center;
font-weight: 600;
.clickable {
display: flex;
flex-direction: row;
align-items: center;
text-decoration: none;
color: var(--theme-text-color);
&:hover {
text-decoration: underline;
}
.avatar {
height: 30px;
width: 30px;
background: red;
border-radius: 50%;
margin-right: 8px;
}
.username {
font-size: 14px;
}
}
}
}
.player {
width: 100%;
min-height: 575px;
}
.rewards {
display: flex;
align-items: center;
flex-direction: row;
height: 60px;
flex-shrink: 0;
background: var(--theme-tertiary);
padding: 0 20px 0;
.icon {
fill: red;
margin-right: 10px;
vertical-align: middle;
height: 30px;
}
.description {
font-size: 14px;
color: #AEAEAE;
font-weight: 700;
flex-grow: 1;
}
}
.info {
padding: 15px;
.title {
font-weight: 700;
h1 {
font-size: 30px;
margin: 8px 0;
}
}
.stats {
font-size: 14px;
font-weight: 700;
color: #7C7C7C;
}
.description {
}
}
}
/* remove later */
.button {
display: flex;
padding: 0 10px;
flex-direction: row;
align-items: center;
height: 30px;
background: lightgray;
border-radius: 4px;
text-decoration: none;
color: black;
font-weight: 700;
font-size: 14px;
}