-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (60 loc) · 1.25 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
* {
font-family: "Inter", sans-serif;
font-weight: 400;
font-size: 32px;
line-height: 150%;
}
body {
background-color: rgb(193, 204, 216);
}
main {
display: flex;
margin-left: 80px;
margin-bottom: 50px;
}
.input-texto {
margin-top: 90px;
}
.mensaje {
position: relative;
margin-top: 20px;
margin-left: 90px;
background-image: url("images/muñeco.png");
background-repeat: no-repeat;
background-position: 18px;
background-size: 300px;
}
.copiar {
position: relative;
margin-top: 20px;
margin-left: 205px;
}
.botones {
display: flex;
flex-direction: row;
margin-top: 20px;
}
.encriptar {
background-color: #4646e2;
color:#fafbfc;
border-radius: 10px;
box-shadow: 0 5px 10px -5px rgba(255, 255, 255, 0.123);
margin: auto;
}
.desencriptar {
margin-left: 30px;
background-color: #e3e3f0;
color:#1e4266;
border-radius: 10px;
box-shadow: 0 5px 10px -5px rgba(255, 255, 255, 0.123);
margin: auto;
}
.informacion {
font-size: 15px;
}
/* Use a media query to add a break point at 800px: */
@media screen and (max-width: 800px) {
.left, .main, .right {
width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
}
}