-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.css
More file actions
122 lines (103 loc) · 1.82 KB
/
results.css
File metadata and controls
122 lines (103 loc) · 1.82 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
/* General Styles */
body {
font-family: Arial, sans-serif;
background-color: #f4f9f9;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
width: 90%;
max-width: 600px;
background: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
}
/* Header */
h1 {
font-size: 24px;
color: #008080;
margin-bottom: 20px;
}
/* Results Summary */
.results-summary {
margin-bottom: 20px;
}
.result-level {
padding: 20px;
border-radius: 8px;
color: white;
text-align: center;
margin-bottom: 10px;
}
.result-level h2 {
font-size: 22px;
margin-bottom: 10px;
}
.result-level p {
font-size: 16px;
}
/* Recommendations */
.recommendations h2 {
font-size: 20px;
color: #00796b;
margin-bottom: 10px;
}
.recommendations ul {
list-style: none;
padding: 0;
margin: 0;
}
.recommendations ul li {
background: #e0f7fa;
margin: 5px 0;
padding: 10px;
border-radius: 5px;
font-size: 16px;
}
/* Resources Section */
.resources h2 {
font-size: 20px;
color: #00796b;
margin: 20px 0 10px;
}
.resources ul {
list-style: none;
padding: 0;
margin: 0;
}
.resources ul li {
margin-bottom: 10px;
}
.resources ul li a {
color: #00796b;
text-decoration: none;
font-size: 16px;
transition: color 0.3s ease;
}
.resources ul li a:hover {
color: #004d40;
}
button:hover {
background: #004d40;
}
.doctor-finder {
margin-top: 20px;
padding: 15px;
background: #f5f5f5;
border-radius: 8px;
}
.find-doctor-btn {
background: #00796b;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}