Skip to content

Commit 982bba0

Browse files
authored
Enhance styles for buttons and layout
Added styles for buttons, sections, and tables.
1 parent 380dd55 commit 982bba0

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

assets/style.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,38 @@ body {
146146
.btn-primary:hover {
147147
background: #002f73;
148148
}
149+
.btn-container {
150+
margin-top: 25px;
151+
}
152+
.btn {
153+
display: inline-block;
154+
background: #0055cc;
155+
color: white;
156+
text-decoration: none;
157+
padding: 10px 20px;
158+
border-radius: 6px;
159+
margin: 6px;
160+
font-weight: 500;
161+
transition: background 0.3s;
162+
}
163+
.btn:hover { background: #003f99; }
164+
section {
165+
width: 85%;
166+
max-width: 950px;
167+
margin: auto;
168+
padding: 40px 0;
169+
}
170+
171+
table {
172+
width: 100%;
173+
border-collapse: collapse;
174+
margin-top: 20px;
175+
}
176+
table th, table td {
177+
border-bottom: 1px solid #eee;
178+
text-align: left;
179+
padding: 10px;
180+
}
149181

150182
/* Pillars / cards */
151183
.section-title {

0 commit comments

Comments
 (0)