-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
130 lines (119 loc) · 2.17 KB
/
style.css
File metadata and controls
130 lines (119 loc) · 2.17 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
119
120
121
122
123
124
125
126
127
128
129
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz@9..144&family=Inter:wght@400;700&display=swap');
*{
box-sizing:border-box;
font-family: 'Fraunces', serif;
font-family: 'Inter', sans-serif;
}
body{
width: 100vw;
height: 100vh;
background-color: #E5E5E5;
overflow:hidden;
}
header img{
margin-top: 30px;
}
.main{
display: flex;
justify-content:space-around;
}
textarea{
width: 700px;
height: 380px;
padding: 10px;
margin-left: 40px;
vertical-align: top;
background-color: #E5E5E5;
color: #0A3871;
border: none;
font-weight: 400;
font-size: 32px;
resize: none;
}
textarea:focus {
outline: none;
}
textarea::placeholder {
text-align: left;
color: #0A3871;
}
.advertencia{
display: flex;
justify-content: flex-start;
align-items: center;
margin-left: 50px;
}
.advertencia img{
width: 16px;
height: 16px;
margin-right: 10px;
}
.botones{
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
margin-left: 40px;
}
.boton{
width: 328px;
height: 67px;
border-radius: 24px;
padding: 24px;
font-size: 18px;
cursor: pointer;
}
#encriptar{
height: 68px;
border: none;
background-color: #0A3871;
color: #FFFFFF;
text-align: center;
}
#desencriptar{
border: 1px solid #0A3871;
background-color:#D8DFE8;
color: #0A3871;
text-align: center;
}
.salida{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
text-align: center;
background-color:#FFFFFF;
padding: 10px 50px;
width: 400px;
height: 500px;
box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
border-radius: 32px;
}
.p1{
font-weight: 700;
font-size: 24px;
margin-bottom: 0;
display: block;
}
.p2{
font-size: 18px;
display: block;
}
.salida img{
width: 80%;
display: block;
}
.boton-container{
margin-bottom: 20px;
width: 100%;
}
.btnCopiar{
cursor: pointer;
width: 100%;
height: 67px;
border-radius: 24px;
padding: 24px;
background-color: #FFFFFF;
font-size: 18px;
display: none;
}