-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (90 loc) · 3.17 KB
/
style.css
File metadata and controls
102 lines (90 loc) · 3.17 KB
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
body, html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
color: whitesmoke;
background-color: black; /* Color de fondo para el cuerpo */
}
.container {
display: flex;
justify-content: space-between; /* Distribuye las columnas con espacio entre ellas */
padding: 10px; /* Espacio alrededor del contenedor */
height: 100%; /* Ocupar el alto completo del viewport */
}
.custom-text1 {
width: 100%; /* Ancho del textarea al 100% del contenedor */
height: 40%; /* Altura del textarea al 50% del contenedor */
padding: 10px; /* Relleno interior */
box-sizing: border-box; /* Incluir el padding en el ancho total */
resize: none; /* Evitar redimensionamiento del textarea */
color: whitesmoke;
background-color: black;
}
.custom-text2 {
width: 100%; /* Ancho del textarea al 100% del contenedor */
height: 20%; /* Altura del textarea al 30% del contenedor */
padding: 10px; /* Relleno interior */
box-sizing: border-box; /* Incluir el padding en el ancho total */
resize: none; /* Evitar redimensionamiento del textarea */
color: whitesmoke;
background-color: black;
}
.left-column {
width: 60%; /* Ancho del 70% para la columna izquierda */
padding: 10px; /* Espacio interno dentro de la columna */
box-sizing: border-box; /* Incluir el padding en el ancho total */
}
.right-column {
width: 40%; /* Ancho del 30% para la columna derecha */
padding: 10px; /* Espacio interno dentro de la columna */
box-sizing: border-box; /* Incluir el padding en el ancho total */
/*display: flex; /* Utiliza flexbox para alinear verticalmente */
/*justify-content: center; /* Centrar contenido horizontalmente */
/*align-items: center; /* Centrar contenido verticalmente */
}
.button-container {
margin-top: 20px; /* Espacio superior para separar los botones del textarea */
display: flex; /* Utiliza flexbox para alinear los botones */
justify-content: flex-start; /* Alinea los botones al inicio */
}
.button-container button {
margin-right: 10px; /* Margen derecho entre los botones */
padding: 10px 20px; /* Relleno interior de los botones */
font-size: 14px; /* Tamaño de la fuente de los botones */
}
table {
width: 100%; /* Ancho completo de la tabla */
height: 85%;
/*max-width: 100%; /* Máximo ancho de la tabla */
border-collapse: collapse; /* Colapsar bordes de celda */
table-layout: fixed; /* Fijar el tamaño de la tabla */
}
table, th, td {
border: 1px solid grey; /* Borde de celda */
padding: 1px; /* Relleno de celda */
text-align: center; /* Alineación de texto en celda */
font-size: 10px; /* Tamaño de la fuente */
}
th {
font-size: 10px
}
/* Estilos básicos para las pestañas */
.tab {
display: none; /* Oculta todas las pestañas */
}
.tab.active {
display: block; /* Muestra la pestaña activa */
}
.tab-button {
cursor: pointer;
padding: 5px 10px;
background-color: #000000;
border: 1px solid #444;
color: #999;
border-bottom: none;
transition: background-color 0.3s ease;
}
.tab-button.active {
background-color: #555555;
color: #ccc
}