-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (76 loc) · 1.67 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
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root{
--cor-de-fundo: #222831;
--cor-principal: #EEEEEE;
--cor-secundaria: #00ADB5;
}
body{
/* background-image: url("criptografia.jpg");
background-repeat: no-repeat;
background-position: 50% 0%;
background-size: cover;
*/
background-color: var(--cor-de-fundo);
}
.conteudo{
display: flex;
justify-content: center;
align-items: center;
height: 300px;
width: 500px;
background-color: var(--cor-principal);
border-radius: 20px;
opacity: 0.9;
}
.todo{
display: flex;
justify-content: center;
align-items: center;
}
button{
background-color: var(--cor-secundaria) ;
border: 4px solid;
border-color: #460f0f(45, 87, 121);
font-size: 15px;
padding: 1em;
width: 100%;
max-width: 200px;
border-radius: 15px 15px 15px 15px;
color: var(--cor-principal) ;
font-family: 'Space Mono',monospace;
}
p{
color: var(--cor-de-fundo);
}
.cabecalho{
display: flex;
justify-content: space-between;
}
.lista-cabecalho{
display: flex;
justify-content: space-between;
}
.lista-item-cabecalho{
display: inline-block;
padding: 30px;
background-color: var(--cor-secundaria);
border-radius: 15px;
margin: 0 5px;
color: var(--cor-principal);
}
.lista-item-cabecalho:hover{
background-color: var(--cor-secundaria);
color: var(--cor-principal);
}
a:link, a:visited{
color: antiquewhite;
}
a:hover{
color: var(--cor-principal);
}
/* .color1 { #283608 };
.color2 { #3e4c1d };
.color3 { #546232 };
.color4 { #697746 };
.color5 { #7f8d5b };
*/