-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (55 loc) · 1.04 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
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa; /* Colore di sfondo leggermente grigio */
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
border: 1px solid #dcdcdc; /* Colore del bordo leggermente più chiaro */
border-radius: 5px;
background-color: #fff; /* Sfondo bianco */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombra leggera */
}
h1 {
color: #007BFF;
}
h2 {
color: #333;
font-size: 20px;
margin-bottom: 10px;
}
.form-group {
margin-bottom: 20px;
}
label {
font-weight: bold;
margin-bottom: 5px;
}
.input-group {
display: flex;
align-items: center;
}
input[type="text"],
input[type="number"],
select {
flex: 1;
padding: 10px;
border: 1px solid #dcdcdc; /* Colore del bordo leggermente più chiaro */
border-radius: 3px;
}
button {
padding: 10px 20px;
cursor: pointer;
}
#result {
margin-top: 20px;
}
.hidden {
display: none;
}
#output {
white-space: pre-line;
font-weight: bold;
color: #333;
}