-
Notifications
You must be signed in to change notification settings - Fork 0
/
crear-estados.css
115 lines (115 loc) · 2.25 KB
/
crear-estados.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
/*aqui incluso sin los imports esta funcionando bien*/
*{
padding: 0;
margin: 0;
font-family: 'ubuntu';
font-size: 20px;
}
body::-webkit-scrollbar{
/* ancho de la scrollbar */
width: 10px;
}
body::-webkit-scrollbar-track{
/* fondo */
background: none;
}
body::-webkit-scrollbar-thumb{
/* propiedades de la barra en si */
background-color: white;
border-radius: 5px;
}
nav{
width: 100%;
align-items: center;
}
nav > a > span{
padding: 20px;
color: white;
}
#previsualizacion{
width: 35%;
margin-inline: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#archivo{
/* Se oculta el verdadero input porque es mas facil editar
el label */
top: 0;
left: 0;
position: absolute;
z-index: -1;
opacity: 0%;
}
#previsualizacion > label{
/* al cliquear funciona, este sera el visible */
width: 100%;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid white;
border-radius: 15px;
color: white;
text-align: center;
}
#previsualizacion label span{
margin-right: 10px;
}
#previsualizacion > label:hover{
/* para cuando pones el raton encima*/
background: white;
color: #424242;
font-weight: bold;
}
#receptor{
margin-top: 20px;
}
#receptor > img{
/* sin esto la imagen es de tamaño real */
max-width: 65%;
}
#receptor > video{
/* sin esto el video es de tamaño real */
max-width: 65%;
}
#texto{
width: 100%;
height: 100px;
margin-top: 20px;
padding: 20px;
background: none;
color: white;
border: 1px solid white;
border-radius: 15px;
}
#texto::placeholder{
color: white;
}
#previsualizacion button{
width: 100%;
background: white;
padding: 10px;
margin-bottom: 300px;
margin-top: 40px;
border: none;
border-radius: 15px;
color: #424242;
font-size: 24px;
font-weight: bold;
cursor: pointer;
}
#previsualizacion button:hover{
width: 100%;
background: #e1e1e1;
padding: 10px;
margin-bottom: 300px;
margin-top: 40px;
border: none;
border-radius: 15px;
color: #424242;
font-size: 24px;
font-weight: bold;
cursor: pointer;
}