-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
143 lines (133 loc) · 2.7 KB
/
style.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
.card {
transition: all 0.2s;
}
.card:hover {
scale: 1.1;
}
img {
transition: all 0.2s;
}
img:not(.img-not-scaled):hover {
transform: scale(1.05);
}
video {
transition: all 0.2s;
}
video:hover {
transform: scale(1.05);
}
.back-to-top {
position: fixed;
right: 10px;
bottom: 10px;
width: 50px;
height: 50px;
transition: all 0.2s;
}
.back-to-top:hover {
border-radius: 50%;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
.emphasis {
color: #555;
background-color: #eef;
padding: 2px 6px;
border-radius: 4px;
font-weight: bold;
}
/*
.highlight {
color: #ff9900;
font-weight: bold;
}
.service-title {
color: #0056b3;
font-weight: bold;
}
.service-description {
margin-bottom: 20px;
}
.services-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 10px;
}
.services-list li {
flex: 1 1 200px;
margin-bottom: 10px;
}
*/
/*
.container {
max-width: 800px;
margin: auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
*/
.highlight {
color: #ff9900; /* Changed for better contrast with green background */
font-weight: bold;
}
.service-title {
color: #0056b3; /* Adjust to suit your design */
font-weight: bold;
}
.service-description {
margin-bottom: 20px;
}
.services-list {
display: flex;
flex-wrap: wrap;
list-style-type: none;
padding: 0;
}
.flex-list-container {
display: flex;
flex-wrap: wrap;
padding: 0;
margin: 0;
list-style-type: none; /* Removes default list styling */
/*background-color: #f5f5f5; */
padding: 20px; /* Adds some padding around the container */
}
.flex-list-item {
flex: 1 1 150px; /* Adjust '150px' to change the minimum column width before wrapping */
margin: 10px; /* Adds space between items */
background-color: #ffffff; /* Item background color */
box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optional: adds a subtle shadow to each item */
padding: 10px; /* Padding inside each item */
box-sizing: border-box; /* Ensures padding does not affect the overall defined width */
text-align: center; /* Centers text inside each item */
}
.health-blog {
background-color: var(--background-color);
color: var(--text-color);
}
.health-blog h2, .health-blog h3 {
color: var(--primary-color);
}
.health-blog p {
color: var(--text-color);
}
.health-blog .btn-primary {
background-color: var(--accent-color);
border-color: var(--accent-color);
}
.health-blog .btn-primary:hover {
background-color: darken(var(--accent-color), 10%);
border-color: darken(var(--accent-color), 10%);
}
/* Adjustments for smaller screens */
@media (max-width: 768px) {
.health-blog .btn-primary {
margin-bottom: 20px;
}
}