ESL Overlay közvetítésekhez
Fibinger Ádám
2020-02-26 fb69d5b2587fe51902bc32dacd38b835a37cd20e
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;
11 }
12
13 #stripe {
14   position: fixed;
15   top: 2px;
16   left: 0;
17   width: 100%;
18   height: 58px;
19   text-align: center;
20
21   & * {
22     display: inline-block;
23   }
24
25   &.team, &.team-ban {
26     background: transparent url("/assets/stripe.png") no-repeat;
27   }
28
29   &.simple {
30     background: transparent url("/assets/stripe-simple.png") no-repeat;
31   }
32
33   .team {
34     position: fixed;
35     margin-top: 2px;
36     width: 435px;
37     overflow: hidden;
38
39     .name {
40       color: white;
41       font-size: 34px;
42     }
43
44     &.blue {
45       left: 270px;
46       text-align: right;
47     }
48
49     &.orange {
50       left: 1215px;
51       text-align: left;
52     }
53   }
54
55   .ban {
56     position: inherit;
57     top: -1px;
58
59     &.orange {
60       left: 1080px;
61     }
62
63     &.blue {
64       left: 715px;
65     }
66   }
67
68   .info {
69     position: inherit;
70     top: 4px;
71     width: 220px;
72     height: 50px;
73   }
74
75   .info.left {
76     left: 0;
77     text-align: left;
78   }
79
80   .info.right {
81     left: 1700px;
82     text-align: right;
83   }
84
85   .operator {
86     background-repeat: no-repeat;
87     background-size: cover;
88     width: 60px;
89     height: 60px;
90
91     filter: grayscale(65%);
92     text-align: center;
93
94     .prohibit {
95       text-align: center;
96       color: gray;
97       margin-top: 31px;
98       font-size: 20px;
99       text-shadow: 1px 1px 1px gray,
100       1px 0 1px gray,
101       0 -1px 1px gray,
102       -1px -1px 1px gray;
103       filter: none;
104       color: red;
105     }
106   }
107
108   .esl-logo {
109     height: 40px;
110     margin-top: 5px;
111     margin-right: 8px;
112   }
113
114   .flag.hun {
115     height: 34px;
116     margin: 8px 0 0 8px;
117     float: left;
118     margin-right: 10px;
119   }
120
121   .info.left .text {
122     display: table-cell;
123     vertical-align: middle;
124     height: 50px;
125     font-size: 20px;
126     text-shadow: 1px 1px 1px black,
127     1px 0 1px black,
128     0 -1px 1px black,
129     -1px -1px 1px black;
130   }
131
132   .text em {
133     font-style: normal;
134     font-weight: bold;
135     font-size: 22px;
136   }
137 }
138
139 #main {
140   display: block;
141   width: 1920px;
142   height: 1080px;
143
144   &.soon {
145     background: transparent url("/assets/backgrounds/start-soon.png") no-repeat;
8b1f17 146   }
fb69d5 147
8b1f17 148   &.interview {
149     background: transparent url("/assets/backgrounds/interrogation.png") no-repeat;
fb69d5 150   }
151
152   &.interview.fauw {
153     background: transparent url("/assets/backgrounds/interrogation-fauw.png") no-repeat;
8b1f17 154   }
fb1240 155
8b1f17 156   .text, .placeholder {
157     position: absolute;
158     width: 50%;
159     left: 25%;
160     text-align: center;
161     top: 10em;
162     font-size: 5em;
163     color: white;
164   }
fb69d5 165
8b1f17 166   .placeholder {
167     opacity: 0.5;
168     background-color: black;
169     border-radius: 0.2em;
170   }
171
fb69d5 172   &.interview {
8b1f17 173     .text.team {
174       top: 2em;
fb1240 175     }
176   }
177
178 }