-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
63 lines (61 loc) · 1.21 KB
/
index.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
*{margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
border: none;
text-decoration: none;
}
body {
font-family: sans-serif;
background-image: url(./imagens/criptografia-windows.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: auto;
height: 90%;
}
header{
text-align: center;
color: whitesmoke;
width: 100%;
background-color: transparent;
}
.conteiner{
display: flex;
justify-content: center;
text-align: center;
}
#caixa{
background-color: rgb(21, 3, 137);
color: white;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
margin-top: 2%;
padding: 1%;
border-radius: 20px;
text-shadow: 0px 0px 4px black;
font-size: 15px;
}
#cifraCesar {
text-align: center;
display: none;
flex-direction: column;
}
#incremento {
transition: all 0.3s;
}
.mensagem textarea {
width: 300px;
height: 30px;
}
.mensagem2 textarea {
width: 300px;
height: 30px;
}
#cifraBase {
text-align: center;
display: none;
flex-direction: column;
}