-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (104 loc) · 2.12 KB
/
style.css
File metadata and controls
124 lines (104 loc) · 2.12 KB
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
121
122
123
124
:root{
--cor-principal: #595959dd ;
--cor-secundaria: #000000;
--cor-destaque: #000000;
--cor-texto: #ffffff;
}
.favicon {
border-radius: 50px;
}
body {
background-image: url(campo.jpg);
background-size: cover;
background-position: center;
color: var(--cor-texto);
display:grid;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.cor-titulo {
color: #22d1d1;
}
.caixa-principal{
background-color: var(--cor-principal);
border-radius: 30px;
font-size: 25px;
width: 90%;
max-width: 800px;
text-align: center;
padding: 10px;
}
h1{
color: var(--cor-destaque);
}
button {
background-color: var(--cor-secundaria);
color: var(--cor-texto);
font-size: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
border: none;
border-radius: 15px;
padding: 15px;
margin: 5px;
transition: background-color 0.3s;
}
button:hover{
background-color: var(--cor-destaque);
color: var(--cor-principal);
}
.texto-resultado{
color: #22d1d1;
font-size: 100px;
padding: 0;
margin: 0;
}
.rodape {
display:flex;
text-align: center;
}
.lista-rodape {
display: block;
list-style: none;
}
.lista-rodape-link:hover {
color: var(--cor-destaque);
}
.lista-rodape-item {
display: block;
}
.lista-rodape-link {
color: var(--cor-texto);
text-decoration: none;
font-size: 16px;
}
.lista-rodape-titulo {
font-size: 18px;
color: var(--cor-destaque);
}
.eu{
width: 10%;
}
.texto-resultado{
color: #22d1d1;
font-size: 100px;
padding: 0;
margin: 0;
}
.clique{
font-size: 20px;
text-decoration: none;
color: var(--cor-texto);
}
.clique:hover {
color: var(--cor-destaque);
}
.clique2{
font-size: 20px;
text-decoration: none;
color: var(--cor-destaque);
}
.clique2:hover {
color: var(--cor-texto);
}