-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiseasedetection.css
109 lines (92 loc) · 1.63 KB
/
diseasedetection.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* styles.css */
/* Reset default margin and padding */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Background, fonts, and text alignment */
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background: #f9f9f9;
color: #333;
text-align: center;
}
/* Header styles */
header {
background-color: #2e8b57;
color: white;
padding: 20px 0;
margin-bottom: 20px;
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 10px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
text-decoration: underline;
}
/* Main content styles */
main {
max-width: 1200px;
margin: auto;
padding: 20px;
}
#intro {
margin-bottom: 30px;
}
#upload {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
margin-bottom: 30px;
}
#upload input[type="file"] {
padding: 10px;
margin-top: 10px;
}
#upload button {
background-color: #2e8b57;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
transition: background-color 0.3s ease;
}
#upload button:hover {
background-color: #3b9d6e;
}
/* Footer styles */
footer {
background-color: #2e8b57;
color: white;
padding: 20px 0;
margin-top: 40px;
}
/* Responsive design */
@media (max-width: 768px) {
nav ul li {
display: block;
margin: 10px 0;
}
main {
padding: 10px;
}
}