Skip to content

Commit f51306e

Browse files
committed
202460624_PRUEBASNUEVAS
1 parent 18c81b1 commit f51306e

File tree

17 files changed

+659
-152
lines changed

17 files changed

+659
-152
lines changed
-31.5 KB
Binary file not shown.
-39.9 KB
Binary file not shown.
-2.1 MB
Binary file not shown.
-62.1 KB
Binary file not shown.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="./estilos.css" type="text/css">
7+
<!-- <script async src="./registro.js"></script> -->
8+
<title>PRINCIPAL</title>
9+
</head>
10+
11+
<body>
12+
13+
<div id="contenedor">
14+
<div id="central">
15+
<div id="login">
16+
<div class="titulo">
17+
BUSQUEDA DE EQUIPOS <BR> (DATOS DESDE BASE DE DATOS)
18+
<div class="inferior">
19+
<a href="./index.html">Inicio</a>
20+
</div>
21+
</div>
22+
</div>
23+
24+
<script src="js/jquery-3.1.1.min.js"></script>
25+
<script src="js/main.js"></script>
26+
</body>
27+
</html>

Entregas/PruebasEntrega/css/estilosGeneral.css

Lines changed: 0 additions & 42 deletions
This file was deleted.
Lines changed: 209 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,209 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
}
6+
7+
body {
8+
background-size: cover;
9+
background-attachment: fixed;
10+
font-family: sans-serif;
11+
font-weight: normal;
12+
font-size: 100%;
13+
color: #a6d6ef;
14+
margin: 0;
15+
background-color: #0f4c75;
16+
}
17+
18+
19+
/**
20+
MENU
21+
*/
22+
23+
.formcontainer {
24+
display: flex;
25+
align-items: center;
26+
justify-content: center;
27+
margin: 0;
28+
padding: 0;
29+
min-width: 100vw;
30+
min-height: 100vh;
31+
width: 100%;
32+
height: 100%;
33+
}
34+
35+
#contenido {
36+
max-width: 320px;
37+
width: 100%;
38+
}
39+
40+
#btnform{
41+
text-decoration: none; /*decoración texto*/
42+
text-transform: uppercase; /*capitalización texto*/
43+
font-family: 'Helvetica', sans-serif; /*tipografía texto*/
44+
}
45+
46+
/* FORMATO LOGIN */
47+
.formlogin {
48+
font-size: 200%;
49+
color:#bbe1fa;
50+
text-align: center;
51+
margin-bottom: 20px;
52+
}
53+
54+
#formlogin {
55+
width: 100%;
56+
padding: 50px 30px;
57+
background-color: #3282b8;
58+
border-radius: 3px;
59+
-moz-border-radius: 3px;
60+
-webkit-border-radius: 3px ;
61+
62+
box-sizing: border-box;
63+
}
64+
#formregistro {
65+
width: 100%;
66+
padding: 50px 30px;
67+
background-color: #3282b8;
68+
border-radius: 3px;
69+
-moz-border-radius: 3px;
70+
-webkit-border-radius: 3px ;
71+
72+
box-sizing: border-box;
73+
}
74+
75+
76+
#formlogin input {
77+
font-family: sans-serif;
78+
font-size: 110%;
79+
color: #1b262c;
80+
81+
display: block;
82+
width: 100%;
83+
height: 40px;
84+
85+
margin-bottom: 10px;
86+
padding: 5px 5px 5px 10px;
87+
88+
box-sizing: border-box;
89+
90+
border: none;
91+
border-radius: 3px 3px 3px 3px;
92+
-moz-border-radius: 3px 3px 3px 3px;
93+
-webkit-border-radius: 3px 3px 3px 3px;
94+
}
95+
96+
/* #formlogin input::placeholder {
97+
font-family: sans-serif;
98+
color: #E4E4E4;
99+
} */
100+
101+
#formlogin button {
102+
font-family: sans-serif;
103+
font-size: 110%;
104+
color:#1b262c;
105+
width: 100%;
106+
height: 40px;
107+
border: none;
108+
109+
border-radius: 3px 3px 3px 3px;
110+
-moz-border-radius: 3px 3px 3px 3px;
111+
-webkit-border-radius: 3px 3px 3px 3px;
112+
113+
background-color: #bbe1fa;
114+
115+
margin-top: 10px;
116+
}
117+
118+
#formlogin button:hover {
119+
background-color: #0f4c75;
120+
color:#bbe1fa;
121+
}
122+
123+
/* FORMATO REGISTRO */
124+
.formregistro {
125+
font-size: 200%;
126+
color:#bbe1fa;
127+
text-align: center;
128+
margin-bottom: 20px;
129+
}
130+
131+
#formregistro {
132+
width: 100%;
133+
padding: 50px 30px;
134+
background-color: #053a5e;
135+
border-radius: 3px;
136+
-moz-border-radius: 3px;
137+
-webkit-border-radius: 3px ;
138+
139+
box-sizing: border-box;
140+
}
141+
142+
143+
#formregistro input {
144+
font-family: sans-serif;
145+
font-size: 110%;
146+
color: #1b262c;
147+
148+
display: block;
149+
width: 100%;
150+
height: 40px;
151+
152+
margin-bottom: 10px;
153+
padding: 5px 5px 5px 10px;
154+
155+
box-sizing: border-box;
156+
157+
border: none;
158+
border-radius: 3px 3px 3px 3px;
159+
-moz-border-radius: 3px 3px 3px 3px;
160+
-webkit-border-radius: 3px 3px 3px 3px;
161+
}
162+
163+
/* #formlogin input::placeholder {
164+
font-family: sans-serif;
165+
color: #E4E4E4;
166+
} */
167+
168+
/* #formregistro button {
169+
font-family: sans-serif;
170+
font-size: 110%;
171+
color:#1b262c;
172+
width: 100%;
173+
height: 40px;
174+
border: none;
175+
176+
border-radius: 3px 3px 3px 3px;
177+
-moz-border-radius: 3px 3px 3px 3px;
178+
-webkit-border-radius: 3px 3px 3px 3px;
179+
180+
background-color: #bbe1fa;
181+
182+
margin-top: 10px;
183+
} */
184+
185+
#formregistro button:hover {
186+
background-color: #0f4c75;
187+
color:#bbe1fa;
188+
}
189+
#formregistro button:hover {
190+
background-color: #0f4c75;
191+
color:#bbe1fa;
192+
}
193+
194+
195+
196+
197+
/* */
198+
199+
.btnLogin, .btnRegistro {
200+
/* border: 5px solid #eeeff1; /*anchura, estilo y color borde*/
201+
/* padding: 10px; /*espacio alrededor texto*/
202+
/* background-color: #2e518b; /*color botón*/
203+
/* color: #ffffff; /*color texto*/
204+
text-decoration: none; /*decoración texto*/
205+
text-transform: uppercase; /*capitalización texto*/
206+
font-family: 'Helvetica', sans-serif; /*tipografía texto*/
207+
/* border-radius: 50px; /*bordes redondos */
208+
}
209+

0 commit comments

Comments
 (0)