-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhorario.css
63 lines (63 loc) · 1.47 KB
/
horario.css
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
#tabla{
display: flex;
justify-content: center;
align-items: center;}
td{
height: 6rem;
font-size:14px ;
/*line-height: 1rem; tamaño del salto de linea*/}
td:first-child,th:first-child{
width: 70px;
font-size:16px ;
text-align: center;}
th:not(:first-child){
height: 1.5rem;
width: 180px;}
tr:nth-child(even),th{
background-color: rgb(213, 213, 213);}
tr:nth-child(odd),th{
background-color: white;}
#PopUpFondo{
position: fixed;
top:0; left: 0;
z-index: 1;
width: 100%; height: 100%;
background: rgba(0,0,0,0.6);
display: none;
justify-content: center;
align-items: center;
flex-direction: column;}
#PopUpCuerpo{
width: 40vw; height: fit-content; /* debe variar entre dispositivos (configurado para desktop) */
background: white;
display: flex;
flex-direction: column;}
#PopUpHeader{
display: flex;
height: 30px;
width: 100%;
background-color: orange;}
#PopUpHeader div:nth-child(1){
width: 100%;
padding: 5px 0 5px 30px;
text-align: center;}
.boton{
height: 22px; width: 40px;
color: black;
text-align: center;}
.boton:hover{
background-color: red;
color: white;}
#botonP form{
background-color: white !important;
width: auto;}
#PopUpMain{
height: auto;
width: auto;
display: flex;
justify-content: center;
text-align: center;
flex-direction: column;}
#PopUpMain p{
text-align: left;
text-indent: 20px;}