[2629da]: / style / style.css

Download this file

80 lines (69 with data), 1.8 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
/* Apply a healthcare-themed background gradient */
body {
background-color: #055fad; /* Light blue healthcare-related color */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Input fields styling */
input[type=message], input[type=email], input[type=text], textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
font-size: 16px;
background-color: #f9f9f9; /* Soft white background for inputs */
}
/* Submit button styling */
button[type=submit] {
background-color: #028090; /* Deep teal color for button */
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
/* Hover effect for the submit button */
button[type=submit]:hover {
background-color: #05668d; /* Darker teal on hover */
}
/* Hide Streamlit Branding */
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
header {visibility: hidden;}
/* Add padding and style to the container where the form is placed */
.container {
max-width: 600px;
margin: 50px auto;
background-color: rgb(188, 172, 172);
padding: 30px;
border-radius: 8px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
/* Add a header for your healthcare system */
h1 {
text-align: center;
color: #034f84; /* Dark blue for healthcare theme */
font-size: 36px;
}
/* Add a healthcare related icon */
h1:before {
content: ""; /* Healthcare emoji */
}
/* Healthcare themed colors */
h2 {
color: #028090; /* Deep teal for subheadings */
font-size: 24px;
margin-bottom: 20px;
text-align: center;
}
/* Style for labels */
label {
font-weight: bold;
color: #034f84; /* Dark blue for label text */
}