ESL Overlay közvetítésekhez
Fibinger Ádám
2019-11-27 fb1240bd437051bd49939b0c6ae135ea7a5847e5
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;
146
147     .text, .placeholder {
148       position: absolute;
149       width: 50%;
150       left: 25%;
151       text-align: center;
152       top: 97%;
153       font-size: 5em;
154       color: white;
155     }
156     .placeholder {
157       opacity: 0.5;
158       background-color: black;
159       border-radius: 0.2em;
160     }
161   }
162
163 }