-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (97 loc) · 1.68 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
110
111
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Fira Code', monospace;
}
.body {
display: flex;
flex-wrap: wrap;
}
body {
background-color: #1d1e20;
color: rgb(101, 83, 184);
font-size: 1.5em;
margin: 0;
padding: 0;
text-align: center;
}
#input-texto {
width: 90%;
height: 90%;
font-size: 1em;
padding: 1em;
margin: 1em;
}
#btn-encriptar {
width: 120px;
height: 40px;
text-transform: uppercase;
border: none;
border-radius: 10px;
transition: all 0.3s ease 0s;
cursor: pointer;
margin: 1em;
}
#btn-desencriptar {
width: 120px;
height: 40px;
text-transform: uppercase;
border: none;
border-radius: 10px;
transition: all 0.3s ease 0s;
cursor: pointer;
margin: 1em;
}
.msg-div {
font-size: 1em;
padding: 1em;
margin: 1em;
}
#msg {
width: 90%;
height: 90%;
font-size: 1em;
padding: 1em;
margin: 1em;
}
#btn-limpiar {
width: 120px;
height: 40px;
text-transform: uppercase;
border: none;
border-radius: 10px;
transition: all 0.3s ease 0s;
cursor: pointer;
margin: 1em;
}
#btn-copiar {
width: 120px;
height: 40px;
text-transform: uppercase;
border: none;
border-radius: 10px;
transition: all 0.3s ease 0s;
cursor: pointer;
margin: 1em;
}
.button:hover{
animation: pulsate 1s
ease-in-out; /*The pulsate animation is added on hover. You could also add this on .button:focus and it will add it when clicking the button as well.*/
}
@keyframes pulsate {
0%{
box-shadow:
0 0 25px #5ddcff,
0 0 50px #4e00c2;
}
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(255, 255, 255);
color: rgb(101, 83, 184);
text-align: center;
}