File tree Expand file tree Collapse file tree 1 file changed +38
-13
lines changed Expand file tree Collapse file tree 1 file changed +38
-13
lines changed Original file line number Diff line number Diff line change 1
1
@import " {{ site.theme }}" ;
2
2
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
+
3
40
// Custom styles
4
41
.site-footer {
5
42
text-align : center ;
22
59
}
23
60
}
24
61
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
-
37
62
// Table styles
38
63
table {
39
64
display : table ;
@@ -62,4 +87,4 @@ table {
62
87
line-height : 1.4 ;
63
88
overflow-x : auto ;
64
89
}
65
- }
90
+ }
You can’t perform that action at this time.
0 commit comments