forked from amrit03b/MedQ
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style1.css
94 lines (81 loc) · 1.46 KB
/
style1.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
body {
background-image: url("backl.jpg");
background-size: cover;
background-repeat: no-repeat;
font-family: Arial, sans-serif;
}
div .left{
display: flex;
font-size: 4vw;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
}
.symptom-selector {
text-align: center;
padding: 20px;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 10px;
max-width: 500px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.symptom-list {
list-style: none;
padding: 0;
}
.symptom-list li {
margin-bottom: 10px;
}
#detect-btn {
padding: 10px 20px;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
#detect-btn:hover {
background-color: #2980b9;
}
#result-container {
text-align: center;
margin-top: 20px;
}
#disease-list {
list-style: none;
padding: 0;
}
#disease-list li {
margin-bottom: 10px;
}
.overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 24px;
}
h2 {
margin-top: 0;
}
footer {
position:fixed;
left:0px;
bottom:4px;
height:30px;
width:100%;
background:#999;
}