Skip to content

Commit 29d5dec

Browse files
authored
Updated style.scss for better visibility
1 parent ba73edb commit 29d5dec

File tree

1 file changed

+38
-13
lines changed

1 file changed

+38
-13
lines changed

docs/assets/css/style.scss

Lines changed: 38 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
@import "{{ site.theme }}";
22

3+
// Button styles
4+
.buttons-container {
5+
margin: 2rem 0;
6+
}
7+
8+
.btn {
9+
display: inline-block;
10+
padding: 0.75rem 1.5rem;
11+
font-size: 1.1rem;
12+
font-weight: 600;
13+
text-decoration: none;
14+
border-radius: 0.5rem;
15+
transition: all 0.2s ease-in-out;
16+
margin-bottom: 1rem;
17+
18+
&:hover {
19+
text-decoration: none;
20+
transform: translateY(-1px);
21+
}
22+
}
23+
24+
.btn-blue {
25+
color: #fff;
26+
background-color: #2563eb;
27+
border: 1px solid #2563eb;
28+
29+
&:hover {
30+
background-color: #1d4ed8;
31+
border-color: #1d4ed8;
32+
color: #fff;
33+
}
34+
}
35+
36+
.mr-2 {
37+
margin-right: 1rem;
38+
}
39+
340
// Custom styles
441
.site-footer {
542
text-align: center;
@@ -22,18 +59,6 @@
2259
}
2360
}
2461

25-
.btn {
26-
color: rgba(255, 255, 255, 0.9);
27-
background-color: rgba(255, 255, 255, 0.08);
28-
border-color: rgba(255, 255, 255, 0.2);
29-
30-
&:hover {
31-
color: rgba(255, 255, 255, 0.8);
32-
background-color: rgba(255, 255, 255, 0.2);
33-
border-color: rgba(255, 255, 255, 0.3);
34-
}
35-
}
36-
3762
// Table styles
3863
table {
3964
display: table;
@@ -62,4 +87,4 @@ table {
6287
line-height: 1.4;
6388
overflow-x: auto;
6489
}
65-
}
90+
}

0 commit comments

Comments
 (0)