-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (69 loc) · 1.74 KB
/
style.css
File metadata and controls
78 lines (69 loc) · 1.74 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
/* === Base Styles === */
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
line-height: 1.6;
color: #333;
}
/* === Header === */
header {
text-align: center;
padding: 30px 20px;
color: white;
border-radius: 0 0 15px 15px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* === Sections === */
section {
background-color: white;
margin: 20px auto;
padding: 20px;
max-width: 900px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* === Headings === */
h1 { font-size: 2em; margin-bottom: 10px; }
h2 { color: #444; margin-top: 0; }
/* === Lists === */
ul { list-style-type: square; padding-left: 20px; }
/* === Links === */
a {
color: #007BFF;
text-decoration: none;
}
a:hover { text-decoration: underline; }
/* === Cards (for business, tourism, agriculture) === */
.card {
background-color: #fff;
padding: 15px;
margin: 10px 0;
border-radius: 8px;
box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}
/* === Footer === */
footer {
text-align: center;
font-size: 13px;
color: #666;
margin: 20px 0;
}
/* === Color Themes (apply via body class) === */
body.personal-website header { background-color: #4CAF50; }
body.school-website header { background-color: #2196F3; }
body.market-price-board header { background-color: #FF9800; }
body.agriculture-guide header { background-color: #388E3C; }
body.tourism-website header { background-color: #009688; }
body.health-awareness header { background-color: #FFCDD2; }
body.business-directory header { background-color: #3F51B5; }
body.mental-health-awareness header { background-color: #6A1B9A; }
/* === Responsive Basics === */
@media (max-width: 600px) {
section {
margin: 10px;
padding: 15px;
}
h1 { font-size: 1.5em; }
}