-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (73 loc) · 1.58 KB
/
styles.css
File metadata and controls
85 lines (73 loc) · 1.58 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
:root{
/*["9c89b8","f0a6ca","efc3e6","f0e6ef"]*/
--blanco : #F0E6EF;
--rosa : #f0a6ca;
--rosaLigero: #efc3e6;
--morado: #9c89b8;
}
*{
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
margin: 0%;
}
body{
background-color: var(--blanco);
text-align: center;
font-size: 1.5rem;
}
header{
background-color: var(--rosa);
font-size: 3rem;
padding: .5rem;
/* margin-bottom: 1rem; */
width: 100%;
}
.formContainer{
background-color: var(--rosaLigero);
display: inline-block;
padding: 2rem 7rem 2rem 7rem;
margin: 2rem;
}
input[type="text"]{
border-radius: 15px;
border: solid 2px black;
text-align: center;
width: 45%;
}
input[type="file"]{
border: solid 2px black;
background-color: var(--morado);
outline: none;
white-space: nowrap;
padding: 3rem;
}
/*Estilos de botones*/
button, input[type="submit"]{
padding: .7rem;
font-size: 1.1rem;
border: none;
background-color: var(--morado);
color: var(--blanco);
}
/*Todo lo relacionado con la webcam*/
#webcam, .webcamContainer{
display: inline-block;
margin: auto;
border-radius: 10px;
background-color: var(--morado);
}
/*Boton de tomar foto*/
#tomarFoto{
background-color: var(--morado);
border-radius: 100%;
margin: .4rem;
width: 2.5rem;
height: 2.5rem;
border: 4px solid black;
cursor: pointer;
}
#tomarFoto:hover,
button:hover,
input[type="submit"]:hover{
background-color: #7d6e94
}