-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (40 loc) · 729 Bytes
/
style.css
File metadata and controls
48 lines (40 loc) · 729 Bytes
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
body {
background-color: #f4f4f4;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
color: #333;
text-align: center;
}
.container {
text-align: center;
padding: 10px;
background-color: #fff;
}
.mensagem1 {
font-size: 18px;
color: #555;
}
.mensagem2 {
font-size: 36px;
color: red;
}
button {
padding: 20px;
font-size: 26px;
cursor: pointer;
background-color: #8a05be;
color: #fff;
border-radius: 5px;
}
button:hover {
background-color: #7a02a4;
}
button:active {
background-color: #6a0094;
}
footer {
margin-top: 45px;
}