-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (71 loc) · 1.51 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
* {
box-sizing: border-box;
}
body {
width: 100%;
display: block;
margin: 0;
min-height: 93vh;
background: #4fdb9a;
font-family: Georgia, 'Times New Roman', Times, serif;
color: rgb(139, 16, 196);
text-shadow: #444343 0 0 .09em;
}
.titulo_principal {
color: rgb(139, 16, 196);
font-size: 70px;
text-transform: capitalize;
text-align: center;
display: block;
}
.formularios {
width: 60vw;
margin: auto;
display: flex;
justify-content: center;
flex-wrap: wrap;
flex: 1 1 200px;
}
.form_encriptar,
.form-desencriptar {
margin: 20px;
}
#entrada_texto, #salida_texto {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 14px;
color: rgb(95, 14, 133);
background-color: #ade9cd;
border: 3px solid rgb(95, 14, 133);
}
.formularios button {
align-items: center;
border-radius: 20px;
padding: 5px 5px 5px 5px;
margin-top: 10px;
box-shadow: 20px 0px 30px -5px #5a5959;
border: 2px solid rgb(95, 14, 133);
background-color: rgb(95, 14, 133);
color: #4fdb9a;
cursor: pointer;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 16px;
}
.formularios label {
text-align: center;
}
.boton_izquierdo {
margin-left: 100px;
}
.boton_derecho {
margin-left: 10px;
}
.derechos {
padding: 5px 5px 5px 5px;
background-color: rgb(95, 14, 133);
color: #4fdb9a;
text-align: center;
width: 100%;
max-width: 100%;
position: fixed;
bottom: 0;
}