-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (97 loc) · 1.9 KB
/
style.css
File metadata and controls
116 lines (97 loc) · 1.9 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
body::before {
display: block;
content: '';
height: 60px;
font-family: 'Times New Roman', Times, serif !important;
}
.list-group-item {
word-break: break-all;
overflow: hidden;
}
html {
scroll-padding-top: 100px;
}
#map {
width: 100%;
height: 100%;
border-radius: 10px;
font-family: 'Times New Roman', Times, serif !important;
}
* {
font-family: 'Times New Roman', Times, serif !important;
}
/* Keep card styling globally (used in many pages) */
.card {
box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
border: none;
}
/* ---------- Unified section header ---------- */
.section-header {
max-width: 950px;
margin-left: auto;
margin-right: auto;
}
.section-title {
font-weight: 700;
letter-spacing: 0.2px;
margin-bottom: 0.5rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: "";
display: block;
height: 3px;
width: 70px;
margin: 0.6rem auto 0;
background: rgba(255, 193, 7, 0.9); /* matches Bootstrap warning tone */
border-radius: 999px;
}
.section-subtitle {
font-size: 1.05rem;
line-height: 1.6;
margin-top: 0.75rem;
margin-bottom: 0;
color: rgba(0, 0, 0, 0.78);
}
/* ---------- Flow block ---------- */
.flow-wrap {
background: #ffffff;
border-radius: 16px;
box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.10);
}
.flow-step {
padding: 0.5rem 0.25rem;
}
.flow-icon {
font-size: 2rem;
line-height: 1;
margin-bottom: 0.35rem;
}
.flow-label {
font-weight: 700;
margin-bottom: 0.15rem;
}
.flow-small {
font-size: 0.95rem;
color: rgba(0, 0, 0, 0.65);
}
.flow-arrow {
font-size: 1.75rem;
color: rgba(0, 0, 0, 0.35);
}
/* ---------- Pillar cards ---------- */
.feature-card {
border-radius: 14px;
}
.feature-card .card-body {
padding: 1.25rem;
}
.feature-card .card-title {
font-weight: 700;
margin-bottom: 0.6rem;
}
.feature-card .card-text {
color: rgba(0, 0, 0, 0.78);
line-height: 1.5;
}