-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencriptador.css
More file actions
120 lines (90 loc) · 2.35 KB
/
Copy pathencriptador.css
File metadata and controls
120 lines (90 loc) · 2.35 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
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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
body{
font-family: 'Montserrat', sans-serif;
width:90%;
margin:20px auto;
background-image:url('fondo2.jpg')
}
.izquierda{
border:3px solid black;
width:45%;
display:inline-block;
min-height: 200px;
max-height:90%;
border-radius:30px;
box-shadow: 50px 50px 50px #000;
margin-right:40px;
background: #FA34FF;
background: -moz-linear-gradient(left, #FA34FF 0%, #00FF02 34%, #5DF9FF 100%);
background: -webkit-linear-gradient(left, #FA34FF 0%, #00FF02 34%, #5DF9FF 100%);
background: linear-gradient(to right, #FA34FF 0%, #00FF02 34%, #5DF9FF 100%);
}
.derecha{
border:3px solid black;
width:45%;
display:inline-block;
min-height: 200px;
max-height:90%;
border-radius:30px;
box-shadow: 50px 50px 50px #000;
background: #FA34FF;
background: -moz-linear-gradient(left, #FA34FF 0%, #00FF02 34%, #5DF9FF 100%);
background: -webkit-linear-gradient(left, #FA34FF 0%, #00FF02 34%, #5DF9FF 100%);
background: linear-gradient(to right, #FA34FF 0%, #00FF02 34%, #5DF9FF 100%);
}
.brent{
width:65%;
background: hotpink;
margin:20px auto;
border:2px solid black;
border-radius:10px;
}
textarea{
font-size:30px;
font-weight: bold;
padding:20px;
border:5px solid black;
border-radius:30px;
margin:auto;
max-width:90%;
min-width:90%;
min-height: 250px;
max-height:250px;
background: #C5CE5C;
background: -moz-linear-gradient(left, #C5CE5C 0%, #98A4A2 50%, #89C570 100%);
background: -webkit-linear-gradient(left, #C5CE5C 0%, #98A4A2 50%, #89C570 100%);
background: linear-gradient(to right, #C5CE5C 0%, #98A4A2 50%, #89C570 100%);
text-align: center;
}
button{
padding:20px;
border:none;
border-radius:20px;
box-shadow: 2px 2px 10px #fff;
font-size:22px;
font-weight: bold;
color:yellow;
background: purple;
margin:5px 20px 5px 30px;
cursor:pointer;
}
#copiar,#pegar{
font-size:15px;
background:yellow;
color:purple;
padding:2px;
border:1px solid purple;
}
footer{width:100%;
height:100px;
text-align: center;
background: #000;
color:silver;
font-size:13px;
margin:30px 0 0 0;
padding:10px;
}