-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (93 loc) · 1.76 KB
/
Copy pathstyle.css
File metadata and controls
112 lines (93 loc) · 1.76 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
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
font-weight: 400;
font-size: 30px;
line-height: 150%;
}
.logoalura{
position: absolute;
left: 3%;
right: 37.43%;
top: 1%;
bottom: 1%;
}
body{
background-color: #e5e5e5;
}
main{
display: flex;
margin-left:80px;
margin-bottom: 50px;
}
.input-texto{
background:none;
border: none;
margin-top: 115px;
resize: vertical;
}
.encriptar{
background-color: darkblue;
color: white;
padding: 5px 30px;
border: none;
border-radius: 5px;
transition: 1s all;
cursor: pointer;
box-shadow: 2px 2px 3px 3px rgba(0,0,0,0.3);
}
.encriptar:hover{
background-color: white;
color: darkblue;
transform: scale(1.1);
}
.desencriptar{
margin-left: 30px;
padding: 5px 30px;
border: none;
border-radius: 5px;
transition: 1s all;
cursor:pointer;
box-shadow: 2px 2px 3px 3px rgba(0,0,0,0.3);
}
.desencriptar:hover{
background-color: white;
color: darkblue;
transform: scale(1.1);
}
.informacion{
font-size: 15px;
}
.mensaje{
position: relative;
margin-top: 20px;
margin-left: 30px;
background-image: url(imagenes/muñeco.png);
background-repeat: no-repeat;
background-position: center;
background-size: 300px;
display: block;
resize: vertical;
}
.copiar{
background-color: darkblue;
color: white;
padding: 5px 30px;
border: none;
border-radius: 5px;
transition: 1s all;
cursor: pointer;
margin: 15px 0px 0px 95px;
box-shadow: 2px 2px 3px 3px rgba(0,0,0,0.3);
}
.copiar:hover{
background-color: white;
color: darkblue;
transform: scale(1.1);
}
p{
font-size: 12px;
text-align: center;
}