File size: 1,109 Bytes
0f29384
 
 
 
 
 
 
 
04f52eb
0f29384
 
 
 
 
 
 
04f52eb
0f29384
 
 
04f52eb
0f29384
 
 
 
 
 
7a8934e
0f29384
 
 
621a743
0f29384
 
 
04f52eb
0f29384
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<style>
    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        font-family: 'Roboto', sans-serif;
        background-color: #f0f0f0;
    }

    .header {
        background-color: #007bff;
        color: white;
        padding: 20px;
        text-align: center;
        border-bottom: 5px solid #0056b3;
    }

    .header a {
        color: #ff9900;
    }

    .container {
        height: calc(100vh - 160px); /* 100% chiều cao - header + tab + footer */
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .tab-content {
        height: 100%;
    }

    .tab-pane {
        height: 100%;
    }

    .tab-pane iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    footer {
        background-color: #343a40;
        color: #fff;
        text-align: center;
        padding: 10px;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        font-size: 1em;
        opacity: 0.6;
        transition: opacity 0.5s ease-in-out;
    }

    footer:hover {
        opacity: 1;
    }
</style>