-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
46 lines (46 loc) · 812 Bytes
/
Copy pathStyle.css
File metadata and controls
46 lines (46 loc) · 812 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
body {
background: #f5f5f5;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 420px;
margin: 40px auto;
background: #fff;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
padding: 32px 24px 24px 24px;
}
.titulo {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 24px;
}
.titulo img {
margin-bottom: 8px;
}
h1 {
text-align: center;
color: #333;
margin: 0;
}
.botoes {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
button {
padding: 10px 0;
border: none;
border-radius: 5px;
background: #1976d2;
color: #fff;
font-size: 1rem;
cursor: pointer;
transition: background 0.2s;
}
button:hover {
background: #1565c0;
}