-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (101 loc) · 1.72 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
*{
font-family: "Inter", sans-serif;
font-weight: 400;
font-size: 22px;
line-height: 150%;
}
header{
margin-top: 5vh;
margin-left: 1vw;
mix-blend-mode: multiply;
}
body{
background-color: #F3F5FC;
width: 80%;
margin: auto;
}
main {
display: flex;
margin-left: 80px;
margin-bottom: 50px;
}
.input-texto, input-texto::placeholder{
all: unset;
margin-top: 90px;
color: darkblue;
}
.resultado{
all: unset;
background-image: url("imagens/m2.jpg");
background-repeat: no-repeat;
border-radius: 32px;
position: relative;
text-align: center;
margin-top: 20px;
margin-left: 45px;
}
main>section:last-child{
margin-bottom: 0px;
margin-top: -40px;
width: 25rem;
text-align: center;
background-color: white;
border-radius: 30px;
}
main>section:last-child>h6{
font-size: 30px;
}
main>section:last-child>p{
font-size: 20px;
}
.informacao{
font-size: 150px;
}
div.informacao>h6{
display: inline;
font-size: 1rem;
padding: auto;
}
.botoes{
display: flex;
flex-direction: row;
margin: 20px;
}
button{
border: solid 1px;
border-radius: 0.5em;
width: 10vw
}
button:active{
color: rgb(51, 38, 122);
font-weight: bold;
}
button:hover{
border: 1px solid rgb(153, 191, 226);
box-shadow: 4px 4px 0px rgb(109, 108, 106);
}
.encriptar{
margin-left: 30px;
color: rgb(0, 0, 134);
width: auto;
}
.copiar{
width: 100%
}
.desencriptar{
margin-left: 30px;
color: rgb(0, 0, 134);
width: auto;
}
.copiar{
width: 100%;
color: rgb(0, 0, 134);
}
a:hover{
box-shadow: 1px 1px 1px 1px darkblue;
border-radius: 50%;
}
footer{
display: block;
text-align: center;
}