-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile.css
51 lines (40 loc) · 799 Bytes
/
mobile.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
@media (max-width: 480px){
.main{
flex-direction: column;
}
.container-mensaje{
display: block;
}
#mensaje{
margin-bottom: 90px;
background-color: transparent;
}
#encriptar, #desencriptar{
display: inline-block;
font-size: 1.5vmax;
margin: 5px;
border-radius: 10px;
width: 100%;
padding: 20px 30px;
}
textarea{
font-size: 20px;
overflow: hidden;
}
.traduccion{
display: flex;
box-sizing: border-box;
height: 225px;
width: 100%;
top: 440px;
left: 0;
}
.container-img{
height: 75px;
}
.traduccion img{
width: 100%;
height: 100%;
display: block;
}
}