File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 1
1
/*font for intro*/
2
2
@import url ('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap' );
3
+ /*font for table */
4
+ @import url ('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200&display=swap' );
3
5
4
6
/*css start*/
5
7
/* css to handle different media will later write */
@@ -255,10 +257,18 @@ nav li a
255
257
{
256
258
font-size : 17px ;
257
259
}
260
+ .table1 tbody
261
+ {
262
+ font-family : 'Source Sans Pro' , sans-serif;
263
+ }
258
264
.table1 thead
259
265
{
260
266
font-size : 18px ;
261
267
}
268
+ .table1 tbody tr td : nth-child (2 )
269
+ {
270
+ font-weight : bold;
271
+ }
262
272
.table1 tbody tr td a i
263
273
{
264
274
font-size : 20px ;
Original file line number Diff line number Diff line change @@ -25,6 +25,12 @@ function change_light_mode()
25
25
26
26
// js for skill section end here
27
27
28
+ // js for project section start
29
+ var column = document . querySelectorAll ( ".table1 tbody tr" ) ;
30
+ for ( var i = 0 ; i < column . length ; i += 2 )
31
+ column [ i ] . style . backgroundColor = "#141414" ;
32
+
33
+ // js for project section end
28
34
29
35
// js for project section start
30
36
var list = document . querySelectorAll ( "tbody tr td" ) ;
@@ -73,6 +79,12 @@ function change_dark_mode()
73
79
list [ i ] . style . color = "black" ;
74
80
// js for skill section end here
75
81
82
+ // js for project section start
83
+ var column = document . querySelectorAll ( ".table1 tbody tr" ) ;
84
+ for ( var i = 0 ; i < column . length ; i += 2 )
85
+ column [ i ] . style . backgroundColor = "rgba(0,0,0,.05)" ;
86
+
87
+ // js for project section end
76
88
77
89
// js for project section start
78
90
var list = document . querySelectorAll ( "tbody tr td" ) ;
You can’t perform that action at this time.
0 commit comments