ESL Overlay közvetítésekhez
Fibinger Ádám
2020-03-27 f6ebbfe1f75701487dac0612344cfc1b0e220061
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;
f6ebbf 11   /* background-image: url("/assets/test.png");*/
fb1240 12 }
13
14 #stripe {
15   position: fixed;
f6ebbf 16   top: -6px;
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 {
46       left: 270px;
47       text-align: right;
48     }
49
50     &.orange {
51       left: 1215px;
52       text-align: left;
53     }
54   }
55
56   .ban {
57     position: inherit;
58     top: -1px;
59
60     &.orange {
61       left: 1080px;
62     }
63
64     &.blue {
f6ebbf 65       left: 735px;
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 {
116     background-repeat: no-repeat;
117     background-size: cover;
f6ebbf 118     width: 50px;
119     height: 50px;
120     margin-top: -2px;
fb1240 121
f6ebbf 122     filter: grayscale(50%);
fb1240 123     text-align: center;
124
125     .prohibit {
126       text-align: center;
127       color: gray;
f6ebbf 128       margin-top: 15px;
129       font-size: 24px;
fb1240 130       text-shadow: 1px 1px 1px gray,
131       1px 0 1px gray,
132       0 -1px 1px gray,
133       -1px -1px 1px gray;
134       filter: none;
135       color: red;
136     }
137   }
138
139   .esl-logo {
140     height: 40px;
141     margin-top: 5px;
142     margin-right: 8px;
143   }
144
145   .flag.hun {
146     height: 34px;
147     margin: 8px 0 0 8px;
148     float: left;
149     margin-right: 10px;
150   }
151
152   .info.left .text {
153     display: table-cell;
154     vertical-align: middle;
155     height: 50px;
156     font-size: 20px;
157     text-shadow: 1px 1px 1px black,
158     1px 0 1px black,
159     0 -1px 1px black,
160     -1px -1px 1px black;
f6ebbf 161     width: 350px;
fb1240 162   }
163
164   .text em {
165     font-style: normal;
166     font-weight: bold;
167     font-size: 22px;
168   }
169 }
170
171 #main {
172   display: block;
173   width: 1920px;
174   height: 1080px;
175
176   &.soon {
177     background: transparent url("/assets/backgrounds/start-soon.png") no-repeat;
8b1f17 178   }
fb69d5 179
8b1f17 180   &.interview {
181     background: transparent url("/assets/backgrounds/interrogation.png") no-repeat;
fb69d5 182   }
183
184   &.interview.fauw {
185     background: transparent url("/assets/backgrounds/interrogation-fauw.png") no-repeat;
8b1f17 186   }
fb1240 187
8b1f17 188   .text, .placeholder {
189     position: absolute;
190     width: 50%;
191     left: 25%;
192     text-align: center;
193     top: 10em;
194     font-size: 5em;
195     color: white;
196   }
fb69d5 197
8b1f17 198   .placeholder {
199     opacity: 0.5;
200     background-color: black;
201     border-radius: 0.2em;
202   }
203
fb69d5 204   &.interview {
8b1f17 205     .text.team {
206       top: 2em;
fb1240 207     }
208   }
209
210 }