File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed
MyWebSite/docs/stylesheets Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change 22/* CSS pour le template de base */
33
44h1 {
5+ width : 100% ;
6+ padding : 5px ;
7+ box-sizing : border-box;
58 text-align : center;
9+ background-color : var (--md-primary-fg-color ); /* Change this to your preferred background color */
10+ border-radius : 10px ; /* Adjust the border radius to change the roundness */
11+ margin : 5px 0 ;
612}
713
814h2 {
9- text-align : center;
10- border : 2px ;
11- border-radius : 5px ;
12- background-color : rgb (181 , 181 , 190 );
15+ border-bottom : 2px solid # 000 ; /* Adjust the color and thickness as needed */
16+ padding-bottom : 10px ; /* Space between the text and the line */
17+ margin-bottom : 20px ; /* Space below the line */
1318}
1419
1520
21+
22+
1623/* CSS pour les blocs de compétences */
1724
1825.skill-item-block {
1926 display : inline-block;
2027 border : 2px ;
2128 padding : 10px ;
2229 border-radius : 10px ;
23- background-color : rgb ( 52 , 60 , 156 ) ;
30+ background-color : # 92A8D1 ;
2431 margin : 10px 0 ;
2532 transition : all 0.3s ease;
2633}
2734
2835.skill-item-block : hover {
2936 transform : scale (1.05 );
3037 box-shadow : 0 4px 8px rgba (0 , 0 , 0 , 0.2 );
31- background-color : # 3700ff ;
38+ background-color : # 688dd1 ;
3239}
3340
3441span .skill-item-block {
You can’t perform that action at this time.
0 commit comments