Skip to content

Commit fb4f024

Browse files
STYLE : improving global style
1 parent f617f92 commit fb4f024

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

MyWebSite/docs/stylesheets/extra.css

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,40 @@
22
/* CSS pour le template de base */
33

44
h1 {
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

814
h2 {
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

3441
span .skill-item-block {

0 commit comments

Comments
 (0)