-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
180 lines (136 loc) · 2.52 KB
/
index.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-size: 20px;
}
/*css para estilos graficos*/
html {
font-family: "Times New Roman", sans-serif, Arial;
background-color: #E5E5E5;
}
textarea {
font-size: 20px;
}
/*css para la dispositivos moviles*/
header img {
margin-top: 10px;
margin-left: 20px;
}
button {
background-color: #0A3871;
color: white;
border-radius: 20px;
padding: 10px;
}
button:hover {
background-color: #D8DFE8;
color: black;
}
button:focus {
background-color: #071c3b;
color: white;
}
.container {
display: grid;
grid-template-columns: 1fr;
gap: 30px;
grid-auto-rows: minmax(200px, auto);
margin-right: 15px;
margin-left: 15px;
}
.cajaEncriptar {
display: flex;
flex-direction: column;
flex-wrap: wrap;
margin-top: 20px;
}
.cajaDesencriptar {
background-color: white;
display: flex;
align-items: center;
justify-content: center;
min-height: 500px;
border-radius: 20px;
box-shadow: 0px 5px 28px 5px #0A3871;
}
.textoEntrada {
flex: 2 400px;
border: 0;
background-color: #E5E5E5;
resize: none;
border-radius: 10px;
}
.textoSalida {
flex: 2 300px;
width: 90vw;
resize: none;
}
.botones {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
}
.botones button {
flex: 1 auto;
margin: 5px;
font-size: 18px;
line-height: 1.5;
width: 50px;
}
/*panel de abajo*/
.sinTexto {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.conTexto {
display: none;
flex-direction: column;
align-items: center;
justify-content: center;
}
.conTexto button {
flex: 1 auto;
font-size: 18px;
line-height: 1.5;
width: 250px;
margin-top: 20px;
}
footer {
background-color: #252525;
text-align: center;
color: white;
padding: 20px;
margin-top: 20px;
width: 98vw;
}
footer a {
color: white;
}
/*consulta de medios*/
@media screen and (min-width: 1024px) {
.container {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 30px;
grid-auto-rows: minmax(80vh, auto);
margin-right: 15px;
margin-left: 15px;
}
header{
padding: 30px 30px 30px 0;
}
.textoSalida {
width: 30vw;
flex: 2 70vh;
resize: none;
}
footer{
width: 100%;
margin-top: 100px;
}
}