-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhealth_analysis.css
92 lines (79 loc) · 1.19 KB
/
health_analysis.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
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
/* Basic CSS for the navigation bar */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
nav {
background-color: #f0f0f0;
padding: 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
nav ul {
list-style-type: none;
/* padding: 0; */
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav a {
text-decoration: none;
color: #333;
font-weight: bold;
}
/* Basic CSS for the form elements */
body {
font-family: Arial, sans-serif;
/* margin: 20px; */
}
h1 {
margin-bottom: 20px;
}
div {
margin-bottom: 10px;
}
label {
display: inline-block;
width: 100px;
}
input[type="text"],
input[type="number"],
select {
width: 200px;
padding: 5px;
}
button {
padding: 7px 15px;
background-color: #4caf50;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
/* Basic CSS for the report section */
h2 {
margin-top: 30px;
}
#report,
#result {
padding: 10px;
max-width: 400px;
word-wrap: break-word;
}
#result {
height: 400px;
width: 500px;
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
}
#result img {
width: 200px;
height: 100px;
}