-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (85 loc) · 1.5 KB
/
styles.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
*{
background: #F3F5FC;
font-family: 'Inter';
font-weight: 400;
font-size: 32px;
line-height: 150%;
}
.logo{
width: 40px;
margin: 20px;
}
main{
display: flex;
margin: 0 0 50px 80px;
width: 940px;
height: 650px;
}
.textareainput{
border: none;
color: #0A3871;
margin-top: 90px;
text-transform: lowercase;
}
::placeholder{
color: #0A3871;
}
.textareainput:focus{
outline: none;
}
.mensaje{
height: 80%;
background: white;
background-image: url("imagenes/muneco.png");
background-repeat: no-repeat;
background-size: 100%;
border: none;
border-radius: 24px;
color: #0A3871;
margin: 20px 0 0 98px;
padding-left: 20px;
position: fixed;
}
.mensaje:focus{
outline: none;
}
.botones{
display: flex;
margin-top: 18px;
}
.buttoncipher{
background-color: #0A3871;
border: 1px solid #0A3871;
border-radius: 24px;
color: white;
cursor: pointer;
height: 67px;
width: 328px;
}
.buttondecipher{
background-color: #D8DFE8;
border: 1px solid #0A3871;
border-radius: 24px;
color: #0A3871;
cursor: pointer;
height: 67px;
margin-left: 30px;
width: 328px;
}
.buttoncopy{
border: 1px solid #0A3871;
border-radius: 24px;
color: #0A3871;
cursor: pointer;
height: 67px;
margin-left: 108px;
margin-top: 402px;
position: absolute;
width: 336px;
top: 355px;
left: 55%;
}
.information{
color: #495057;
font-size: 18px;
}