-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (123 loc) · 2.23 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
body {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}
header{
background: #f3f5fc;
padding: 12px;
padding-left: 10%;
}
.titulo{
display: inline-block;
color: #0A3871;
font-family: "Roboto", sans-serif;
font-size: 50px;
padding-left: 30px;
}
.alura{
color: #0A3871;
font-family: "Roboto", sans-serif;
font-size: 25px;
padding-left: 170px;
padding-top: 10px;
}
main{
width: 100%;
background: #f3f5fc;
display: grid;
grid-template-areas:
"izquierda derecha";
grid-template-columns: 70% 30%;
grid-template-rows: 95%;
}
.izq{
padding: 3em;
margin: 22px 121px;
}
textarea{
border: none;
resize: none;
}
.texto-encriptado {
background: #f3f5fc;
width: 100%;
height: 450px;
font-size: 30px;
font-family: "Roboto", sans-serif;
color: #0A3871;
}
.izq p{
margin-bottom: 15px;
}
.izq textarea::placeholder{
color: #0A3871;
font-family: "Roboto", sans-serif;
font-size: 30px;
}
.izquierda textarea:focus::placeholder{
color: #bfd5f0;
font-family: "Roboto", sans-serif;
font-size: 30px;
}
.boton{
display: block;
}
button {
cursor: pointer;
border: 1px solid #0A3871;
border-radius: 25px;
height: 57px;
font-size: 16px;
}
.boton-encriptar{
width: 48%;
color: #D8DFE8;
background: #0A3871;
}
.boton-desencriptar {
width: 48%;
color: #0A3871;
background: #D8DFE8;
margin-left: 3%;
}
/*A la derecha*/
.der {
background: #FFFFFF;
border-radius: 15px;
margin: 20px 20px 20px 0 ;
text-align: center;
box-sizing: border-box;
box-shadow: 15px 10px 25px gray;
}
.der textarea {
background: #ffffff;
width: 93%;
height: 350px;
font-size: 25px;
font-family: "Roboto", sans-serif;
color: #495057;
border-radius: 15px;
padding: 12px;
padding-right: 5%;
}
.imagen-mensaje{
margin-top: 25%;
}
.imagen-mensaje img{
width: 70%;
}
.boton-copiar {
width: 80%;
color: #0A3871;
background: #D8DFE8;
vertical-align: bottom;
margin-left: 3%;
}
footer {
text-align: center;
color: #f6fbf5;
background: #0A3871;
margin: 0;
padding: 5px;
}