-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (106 loc) · 2.11 KB
/
style.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
body{
background-color: antiquewhite;
}
.contenedor{
width: 100%;
height: 100%;
margin: 0 auto;
overflow: hidden;
background-color: antiquewhite;
}
header{
width: 100%;
height: 100%;
background-color: black;
}
.main{
padding: 20px;
float: left;
box-sizing: border-box;
}
.copyright{
text-align: center;
color: black;
font-size: 15px;
margin: 80px 40px 20px;
}
.titulo{
font-size: 40px;
color: whitesmoke;
text-transform: uppercase;
text-align: center;
padding-left: 30px;
}
form{
margin: 40px 0;
}
form textarea{
float: left;
margin: 10px 5px 15px 50px;
padding: 15px 25px;
width: 40%;
resize: none;
border-radius: 5px;
}
.caracteres{
margin: 0 45px;
padding: 5px;
display: inline-block;
font-size: 15px;
color: red
}
#encriptar, #desencriptar, #copiar{
width: 150px;
margin: 50px 6px 10px 200px;
padding: 15px 10px;
font-size: 20px;
background: orange;
cursor: pointer;
border-radius: 5px;
}
/*celulares*/
@media (max-width: 767px){
header, .copyright{
text-align: center;
}
form textarea{
margin-left: 10px;
width: 80%;
position:static;
}
#encriptar, #desencriptar, #copiar{
position:static;
width: 90%;
margin: 5px 15px 5px 15px;
padding: 10px;
}
.caracteres{
display: inline-block;
text-align: left;
margin: 0 20px;
}
}
/*para tablet*/
@media (min-width: 768px) and (max-width: 990px){
header, footer{
text-align: center;
}
form textarea{
margin-left: 10px;
margin-right: 10px;
width: 0 auto;
}
#encriptar, #desencriptar, #copiar{
position:relative;
width: 20%;
margin: 35px 25px 5px 40px;
display: inline-block;
}
.caracteres{
display: inline-block;
margin: 20px 15px 5px;
}
.copyright{
display:inline-flex;
}
}