Quiz
1#site_content {
2padding: 0 10px;
3width: 877px;
4}
5
6.lobby_content {
7display: flex;
8flex-direction: column;
9justify-content: space-between;
10width: 100%;
11height: calc(100vh - 302px);
12position: relative;
13}
14
15.lobby_mode {
16position: absolute;
17left: 5px;
18top: 5px;
19display: flex;
20align-items: center;
21z-index: 1;
22}
23
24.lobby_mode > span {
25margin-right: 5px;
26}
27
28.lobby_mode > select {
29margin-right: 10px;
30border: 1px solid #F79F00;
31background-color: white;
32}
33
34.lobby_invitation_rejected {
35position: absolute;
36top: 5px;
37right: 5px;
38}
39
40.lobby_players_block {
41display: flex;
42justify-content: space-around;
43height: 100%;
44padding-bottom: 50px;
45box-sizing: border-box;
46}
47
48.lobby_player_block {
49height: 100%;
50width: 150px;
51border: 1px solid #F79F00;
52border-top: none;
53border-bottom-left-radius: 20px;
54border-bottom-right-radius: 20px;
55display: flex;
56flex-direction: column;
57align-items: center;
58justify-content: center;
59font-size: 18px;
60}
61
62.lobby_player_blank {
63height: 100%;
64width: 150px;
65border: 1px solid gray;
66border-top: none;
67border-bottom-left-radius: 20px;
68border-bottom-right-radius: 20px;
69}
70
71.lobby_bottom {
72display: flex;
73justify-content: center;
74position: absolute;
75bottom: 0;
76left: 0;
77width: 100%;
78padding: 10px 0;
79}
80
81.lobby_start_block {
82position: relative;
83color: #F79F00;
84}
85
86.lobby_start_game_button, .lobby_cancel_queue_button {
87cursor: pointer;
88}
89
90.lobby_start_game_span {
91color: gray;
92}
93
94.lobby_countdown_block {
95position: absolute;
96top: 0;
97left: 110%;
98display: none;
99}
100
101.lobby_accept_request_bg {
102position: fixed;
103width: 100vw;
104height: 100vh;
105top: 0;
106left: 0;
107display: flex;
108justify-content: center;
109align-items: center;
110background-color: #A6A6A6;
111opacity: 0.8;
112z-index: 2;
113}
114
115.lobby_accept_request_button {
116width: 300px;
117height: 300px;
118border-radius: 150px;
119display: flex;
120justify-content: center;
121align-items: center;
122background-color: white;
123border: 5px solid #F79F00;
124text-transform: uppercase;
125}
126
127.lobby_accept_request_button > span {
128border: 2px solid #F79F00;
129padding: 5px;
130font-size: 24px;
131font-weight: bold;
132letter-spacing: 0.2em;
133cursor: pointer;
134}
135
136.header_friend_invite {
137display: block;
138}
139
140.header_friend_invited {
141display: none;
142}
143
144.game_content {
145display: flex;
146flex-direction: column;
147padding: 10px;
148box-sizing: border-box;
149}
150
151.game_themes > span {
152margin-right: 10px;
153}
154
155.game_questions_block {
156width: 100%;
157display: flex;
158flex-direction: column;
159align-items: center;
160}
161
162.game_question {
163text-align: center;
164}
165
166.game_answers_block {
167display: flex;
168flex-direction: column;
169align-items: center;
170margin: 10px;
171}
172
173.game_answer {
174width: 300px;
175text-align: center;
176cursor: pointer;
177padding: 5px 10px;
178margin-top: 5px;
179}
180
181.game_answer_button {
182background-color: #F79F00;
183padding: 3px 7px;
184cursor: pointer;
185visibility: hidden;
186}
187
188.game_bottom {
189display: flex;
190justify-content: center;
191margin-top: 20px;
192}
193
194.results_score_first > td {
195background-color: #ffd700;
196font-size: 24px;
197}
198
199.results_score_second > td {
200background-color: #c0c0c0;
201font-size: 20px;
202}
203
204.results_score_third > td {
205background-color: #b08d57;
206font-size: 16px;
207}
208
209.game_chat_block, .lobby_chat_block {
210position: fixed;
211bottom: 5px;
212left: 5px;
213width: 300px;
214display: none;
215flex-direction: column;
216background-color: white;
217border: 1px solid #F79F00;
218}
219
220.game_chat_top, .lobby_chat_top {
221padding: 3px;
222display: flex;
223justify-content: space-between;
224align-items: center;
225width: 100%;
226border-bottom: 1px solid #F79F00;
227box-sizing: border-box;
228}
229
230.game_chat_messages, .lobby_chat_messages {
231height: 170px;
232display: flex;
233flex-direction: column-reverse;
234align-items: center;
235overflow-y: auto;
236width: 100%;
237}
238
239.game_chat_textarea, .lobby_chat_textarea {
240width: 100%;
241height: 40px;
242border: none;
243border-top: 1px solid #F79F00;
244box-sizing: border-box;
245}
246
247.lobby_chat_open, .game_chat_open {
248padding: 3px;
249border: 1px solid #F79F00;
250position: fixed;
251left: 5px;
252bottom: 5px;
253background-color: white;
254cursor: pointer;
255}
256
257.lobby_chat_close, .game_chat_close {
258cursor: pointer;
259}