Miguel Diaz commited on
Commit
1b7b519
1 Parent(s): 3978ce4
Files changed (1) hide show
  1. static/css/app2.css +50 -0
static/css/app2.css CHANGED
@@ -1,4 +1,13 @@
1
 
 
 
 
 
 
 
 
 
 
2
  .tab {
3
  overflow: hidden;
4
  border: 1px solid #ccc;
@@ -32,4 +41,45 @@
32
 
33
  .tabcontent:first-child {
34
  display: block;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  }
 
1
 
2
+ .wrapper {
3
+ padding: 0px 20px 80px 20px !important;
4
+ border-bottom: 5px solid #222f3d;
5
+ background: #34495e;
6
+ margin: 0;
7
+ min-width: 320px;
8
+ width: 100%;
9
+ }
10
+
11
  .tab {
12
  overflow: hidden;
13
  border: 1px solid #ccc;
 
41
 
42
  .tabcontent:first-child {
43
  display: block;
44
+ }
45
+
46
+
47
+ .wrapper .tab {
48
+ overflow: hidden;
49
+ display: flex;
50
+ border-bottom: 1px solid #ccc;
51
+ background-color: #fff;
52
+ }
53
+
54
+ .wrapper .tab button {
55
+ background-color: transparent;
56
+ border: none;
57
+ outline: none;
58
+ cursor: pointer;
59
+ padding: 10px 15px;
60
+ font-size: 16px;
61
+ font-weight: bold;
62
+ color: #777;
63
+ transition: 0.3s;
64
+ }
65
+
66
+ .wrapper .tab button:hover {
67
+ background-color: #ddd;
68
+ }
69
+
70
+ .wrapper .tab button.active {
71
+ border-bottom: 2px solid #4285f4;
72
+ color: #4285f4;
73
+ }
74
+
75
+ /* Estilos para el contenido de los tabs */
76
+ .wrapper .tabcontent {
77
+ display: none;
78
+ padding: 20px;
79
+ border: 1px solid #ccc;
80
+ border-top: none;
81
+ }
82
+
83
+ .wrapper .tabcontent:first-child {
84
+ display: block;
85
  }