-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (95 loc) · 1.78 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: #F3F5FC;
}
.logo{
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 40px;
}
.caja_principal{
position: relative;
align-items: flex-end;
margin-left: 10%;
margin-top: 3%;
}
#texto{
font-family: 'Inter';
font-size: 32px;
line-height: 400%;
width: 50%;
color: #0A3871;
}
.text_atencion{
display: inline-flex;
color: #495057;
opacity: 0.8;
font-family: 'Inter';
font-style: normal;
font-size: 12px;
margin-top: 2%;
}
#encriptar{
color: #FFFFFF;
font-family: 'Inter';
font-style: normal;
font-size: 16px;
width: 328px;
height: 67px;
background: #0A3871;
border-radius: 24px;
order: 0;
flex-grow: 1;
display:inline-block;
margin-top: 7%;
}
#desencriptar{
box-sizing: border-box;
width: 328px;
height: 67px;
border: 1px solid #0A3871;
border-radius: 24px;
font-family: 'Inter';
font-style: normal;
font-size: 16px;
color: #0A3871;
order: 1;
flex-grow: 0;
}
.caja_encriptado{
position:fixed;
width: 30%;
height: 90%;
left: 68%;
top: 5%;
background: #FFFFFF;
box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
border-radius: 32px;
}
#texto_encriptado{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 150%;
color: #495057;
}
#copiar{
box-sizing: border-box;
position: absolute;
top: 85%;
left: 10%;
width: 328px;
height: 67px;
border: 1px solid #0A3871;
border-radius: 24px;
font-family: 'Inter';
font-style: normal;
font-size: 16px;
text-align: center;
color: #0A3871;
flex: none;
order: 0;
flex-grow: 1;
}