-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprecalculo.css
More file actions
40 lines (40 loc) · 835 Bytes
/
precalculo.css
File metadata and controls
40 lines (40 loc) · 835 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
body {
font-family: 'Segoe UI', sans-serif;
background: #f2f4f8;
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
}
.card {
background: white;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
width: 400px;
margin-bottom: 20px;
}
input {
width: 100%;
padding: 0.7rem;
font-size: 1rem;
margin-bottom: 1rem;
}
button {
padding: 0.6rem 1rem;
font-size: 1rem;
background: #4f46e5;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
}
button:hover {
background: #3730a3;
}
.resultado {
margin-top: 1rem;
background: #eef;
padding: 1rem;
border-radius: 8px;
}