File size: 1,480 Bytes
581b386
1b7b519
 
 
 
 
 
 
 
 
581b386
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1b7b519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581b386
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

.wrapper {
    padding: 0px 20px 80px 20px !important;
    border-bottom: 5px solid #222f3d;
    background: #34495e;
    margin: 0;
    min-width: 320px;
    width: 100%;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
  }
  
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
  }
  
  .tab button:hover {
    background-color: #ddd;
  }
  
  .tab button.active {
    background-color: #ccc;
  }
  
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
  }
  
  .tabcontent:first-child {
    display: block;
  }


  .wrapper .tab {
    overflow: hidden;
    display: flex;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
  }
  
  .wrapper .tab button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #777;
    transition: 0.3s;
  }
  
  .wrapper .tab button:hover {
    background-color: #ddd;
  }
  
  .wrapper .tab button.active {
    border-bottom: 2px solid #4285f4;
    color: #4285f4;
  }
  
  /* Estilos para el contenido de los tabs */
  .wrapper .tabcontent {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
  }
  
  .wrapper .tabcontent:first-child {
    display: block;
  }