ESL Overlay közvetítésekhez
Fibinger Ádám
2020-05-01 11cf465478a5b2dd4847eb439ea6b9eeafbc3cb0
commit | author | age
fb1240 1 html *, body * {
2   margin: 0;
3   padding: 0;
4   color: white;
5 }
6
7 body {
8   width: 1920px;
9   height: 1080px;
10   font-family: 'Oswald', sans-serif;
11cf46 11   /*background-image: url("/assets/test.png");*/
fb1240 12 }
13
14 #stripe {
15   position: fixed;
11cf46 16   top: -3px;
fb1240 17   left: 0;
18   width: 100%;
19   height: 58px;
20   text-align: center;
21
22   & * {
23     display: inline-block;
24   }
25
26   &.team, &.team-ban {
27     background: transparent url("/assets/stripe.png") no-repeat;
28   }
29
30   &.simple {
31     background: transparent url("/assets/stripe-simple.png") no-repeat;
32   }
33
34   .team {
35     position: fixed;
36     margin-top: 2px;
37     width: 435px;
38     overflow: hidden;
39
40     .name {
41       color: white;
f6ebbf 42       font-size: 33px;
fb1240 43     }
44
45     &.blue {
11cf46 46       left: 325px;
fb1240 47       text-align: right;
48     }
49
50     &.orange {
11cf46 51       left: 1160px;
fb1240 52       text-align: left;
53     }
54   }
55
56   .ban {
57     position: inherit;
11cf46 58     top: 2px;
fb1240 59
60     &.orange {
11cf46 61       left: 1000px;
fb1240 62     }
63
64     &.blue {
11cf46 65       left: 815px;
fb1240 66     }
67   }
68
69   .info {
70     position: inherit;
f6ebbf 71     top: -3px;
72     width: 300px;
fb1240 73     height: 50px;
74   }
75
76   .info.left {
77     left: 0;
78     text-align: left;
79   }
80
81   .info.right {
f6ebbf 82     left: 1620px;
fb1240 83     text-align: right;
84   }
f6ebbf 85
86   .mapwin {
87     background-color: #fff800;
88     position: fixed;
89     top: 6px;
90     left: 861px;
91     width: 32px;
92     height: 14px;
93     &.left {
94       left: 861px;
95       &.one {
96         top: 6px;
97       }
98       &.two {
99         top: 23px;
100       }
101     }
102
103     &.right {
104       left: 1028px;
105       &.one {
106         top: 6px;
107       }
108       &.two {
109         top: 23px;
110       }
111     }
112  }
113
fb1240 114
115   .operator {
083ff4 116     z-index: 10;
fb1240 117     background-repeat: no-repeat;
118     background-size: cover;
f6ebbf 119     width: 50px;
120     height: 50px;
121     margin-top: -2px;
fb1240 122
f6ebbf 123     filter: grayscale(50%);
fb1240 124     text-align: center;
125
126     .prohibit {
083ff4 127       z-index: 20;
fb1240 128       text-align: center;
129       color: gray;
f6ebbf 130       margin-top: 15px;
131       font-size: 24px;
fb1240 132       text-shadow: 1px 1px 1px gray,
133       1px 0 1px gray,
134       0 -1px 1px gray,
135       -1px -1px 1px gray;
136       filter: none;
137       color: red;
138     }
139   }
083ff4 140   .operator :after {
141     z-index: -1px;
142     position: relative;
143     top: -42px;
144     left: 0;
145     content: '';
146     width: 33px;
147     height: 33px;
148     display: block;
149   }
150   .blue .operator :after {
151     box-shadow: 0 0 10px 0 #1486e5;
152   }
153   .orange .operator :after {
154     box-shadow: 0 0 10px 0 #EA7019;
155   }
fb1240 156
157   .esl-logo {
158     height: 40px;
159     margin-top: 5px;
160     margin-right: 8px;
161   }
162
163   .flag.hun {
164     height: 34px;
165     margin: 8px 0 0 8px;
166     float: left;
167     margin-right: 10px;
168   }
169
170   .info.left .text {
171     display: table-cell;
172     vertical-align: middle;
173     height: 50px;
174     font-size: 20px;
175     text-shadow: 1px 1px 1px black,
176     1px 0 1px black,
177     0 -1px 1px black,
178     -1px -1px 1px black;
f6ebbf 179     width: 350px;
fb1240 180   }
181
182   .text em {
183     font-style: normal;
184     font-weight: bold;
185     font-size: 22px;
186   }
187 }
188
189 #main {
190   display: block;
191   width: 1920px;
192   height: 1080px;
193
194   &.soon {
195     background: transparent url("/assets/backgrounds/start-soon.png") no-repeat;
8b1f17 196   }
fb69d5 197
8b1f17 198   &.interview {
199     background: transparent url("/assets/backgrounds/interrogation.png") no-repeat;
fb69d5 200   }
201
202   &.interview.fauw {
203     background: transparent url("/assets/backgrounds/interrogation-fauw.png") no-repeat;
8b1f17 204   }
fb1240 205
8b1f17 206   .text, .placeholder {
207     position: absolute;
208     width: 50%;
209     left: 25%;
210     text-align: center;
211     top: 10em;
212     font-size: 5em;
213     color: white;
214   }
fb69d5 215
8b1f17 216   .placeholder {
217     opacity: 0.5;
218     background-color: black;
219     border-radius: 0.2em;
220   }
221
fb69d5 222   &.interview {
8b1f17 223     .text.team {
224       top: 2em;
fb1240 225     }
226   }
227
228 }