ESL Overlay közvetítésekhez
Fibinger Ádám
2019-10-08 b805b45731b3aa9c345b82d18d47978a1fffe14d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="/assets/operators-color.css">
    <style type="text/css">
        html *, body * {
            margin: 0;
            padding: 0;
            color: white;
        }
 
        body {
            width: 1920px;
            height: 1080px;
/*            background-image: url("assets/test.png");
            background-repeat: no-repeat;*/
        }
 
        #stripe {
            position: fixed;
            top: 2px;
            left: 0;
            width: 100%;
            background: transparent url("assets/stripe.png") no-repeat;
            height: 58px;
            text-align: center;
        }
 
        #stripe * {
            display: inline-block;
        }
 
        #stripe .team {
            margin-top: 2px;
            position: inherit;
            width: 420px;
            overflow: hidden;
        }
 
        #stripe .team .name {
            color: white;
            font-size: 34px;
            font-family: 'Oswald', sans-serif;
        }
 
        #stripe .team.orange {
            left: 270px;
        }
        #stripe .ban {
 
        }
        .operator {
            background-repeat: no-repeat;
            background-size: cover;
            width: 60px;
            height: 60px;
        }
        #stripe .team.blue {
            left: 1070px;
        }
 
        #stripe .logo {
            display: inline-block;
        }
        #stripe .info {
            position: inherit;
            top: 0;
            width: 220px;
            height: 58px;
        }
        #stripe .info.left {
            left: 0;
            text-align: left;
        }
        #stripe .info.right {
            left: 1700px;
            text-align: right;
        }
        #stripe .operator {
            width: 60px;
            height: 60px;
            border: 1px solid red;
            display: inline-block;
        }
    </style>
</head>
<body>
<div id="stripe">
    <span class="info left">Info left</span>
    <span class="team orange">
        <span class="name">ÁRVÍZTŰRŐ ASDF asd csapat</span>
    </span>
    <span class="ban orange">
            <span class="operator jackal"></span>
            <span class="operator mira"></span>
    </span>
    <span class="logo"></span>
    <span class="ban blue">
            <span class="operator montagne"></span>
            <span class="operator goyo"></span>
    </span>
    <span class="team blue">
        <span class="name">ÁRVÍZTŰRŐ ASDF asd csapat</span>
    </span>
    <span class="info right">Info right</span>
</div>
</body>
</html>