-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (114 loc) · 2.94 KB
/
style.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
*{
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.texto-con-imagen {
display: flex;
align-items: center;
justify-content: center;
}
.imagen-pequena {
width: 80px; /* Ajusta el tamaño de la imagen según tus necesidades */
height: auto; /* Mantiene la proporción de la imagen */
margin: 0 10px; /* Espacio entre la imagen y el texto */
}
h1 {
font-family: "Playwrite CU", cursive;
color: #333;
font-size: 70px;
color: #e45b69e1;
margin-top: 30px;
}
h2{
font-family: "Protest Guerrilla", sans-serif;
font-size: 40px;
color: #c82333;
padding: 20px;
}
#slcAlumnos, #fecha, #registrarBtn, #eliminarBtn {
margin: 10px;
padding: 10px;
font-size: 16px;
}
#slcAlumnos {
width: 250px;
border-bottom: #333 solid 3px;
border-top: none;
box-shadow: 10px 10px 10px rgba(226, 98, 98, 0.74);
border-radius: 20px;
}
#fecha {
border-bottom: #333 solid 3px;
border-top: none;
box-shadow: 10px 10px 10px rgba(226, 98, 98, 0.74);
border-radius: 20px;
}
#registrarBtn, #eliminarBtn {
background-color: #f05454af;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
#registrarBtn:hover, #eliminarBtn:hover {
background-color: #f70000;
}
table {
border-collapse: collapse;
width: 80%;
margin: 20px 0;
background-color: white;
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f4f4f4;
color: #333;
font-family: "Protest Guerrilla", sans-serif;
font-size: 30px;
}
tr:hover {
background-color: #afacacd5;
}
.eliminarFilaBtn {
background-color: #dc3545;
color: white;
border: none;
padding: 5px 10px;
border-radius: 4px;
cursor: pointer;
}
.eliminarFilaBtn:hover {
background-color: #c82333;
}
.contenedor1 {
background-image: url('imgs/fondo.jpg');
background-size: cover; /* Asegura que la imagen cubra todo el contenedor */
background-position: center; /* Centra la imagen en el contenedor */
background-repeat: no-repeat; /* Evita que la imagen se repita */
display: flex;
flex-direction: column;
justify-content: space-between; /* Espacia los elementos para colocar el botón al fondo */
align-items: center; /* Centra los elementos horizontalmente */
padding: 20px;
border: 1px solid #ddd;
width: 300px;
height: 400px; /* Ajusta la altura según tus necesidades */
box-sizing: border-box; /* Incluye el padding en el tamaño total del contenedor */
box-shadow: 10px 10px 10px rgb(0, 0, 0);
border-radius: 20px;
}