File tree 9 files changed +54
-30
lines changed
9 files changed +54
-30
lines changed Original file line number Diff line number Diff line change 51
51
steps :
52
52
- name : Deploy to GitHub Pages
53
53
id : deployment
54
- uses : actions/deploy-pages@v4
54
+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 24
24
line-height : 20px ;
25
25
letter-spacing : 0.25px ;
26
26
color : var (--ifm-text-color-on-primary-p1 );
27
- text-align : center ;
27
+ text-align : justify ;
28
28
}
29
29
30
30
div .row {
@@ -138,9 +138,9 @@ div .join_the_team_text {
138
138
@media only screen and (max-width : 996px ) {
139
139
/*Mobile*/
140
140
.value_card {
141
- height : 400 px ;
141
+ height : 420 px ;
142
142
width : 264px ;
143
- padding : var (--ifm-spacing-xl ) var (--ifm-spacing-lg );
143
+ padding : var (--ifm-spacing-lg ) var (--ifm-spacing-md );
144
144
border-radius : 8px ;
145
145
box-shadow : 0px 0px 8px 1px # c8c8c7 ;
146
146
background-color : var (--ifm-color-primary-p1 );
@@ -158,6 +158,11 @@ div .join_the_team_text {
158
158
color : var (--ifm-text-color-on-primary-p1 );
159
159
}
160
160
161
+ .value_text p {
162
+ text-align : justify;
163
+ padding : 0 ;
164
+ }
165
+
161
166
.large_portrait_card {
162
167
width : 100% ;
163
168
height : 100% ;
@@ -189,7 +194,7 @@ div .join_the_team_text {
189
194
@media only screen and (min-width : 996px ) {
190
195
/*Desktop*/
191
196
.value_card {
192
- height : 540 px ;
197
+ height : 460 px ;
193
198
width : 264px ;
194
199
padding : var (--ifm-spacing-2xl ) var (--ifm-spacing-lg );
195
200
border-radius : 8px ;
Original file line number Diff line number Diff line change @@ -27,9 +27,15 @@ div .topics_header {
27
27
28
28
.topics_card {
29
29
width : 100% ;
30
- padding : var (--ifm-spacing-2xl ) var (--ifm-spacing-lg );
30
+ padding : var (--ifm-spacing-lg ) var (--ifm-spacing-lg );
31
+ text-align : justify;
32
+ }
33
+
34
+ .topics_card .p {
35
+ padding : var (--ifm-spacing-lg ) var (--ifm-spacing-lg );
31
36
}
32
37
38
+
33
39
.services_link_desktop {
34
40
display : none;
35
41
}
Original file line number Diff line number Diff line change 1
1
import { projectsDetails } from "./descriptions/projectsDetails" ;
2
- import ProjectCard from "./ProjectCard"
2
+ import ProjectCard from "./ProjectCard" ;
3
+ import styles from "./styles.module.css" ;
3
4
4
5
export default function AllProjects ( ) {
5
6
return (
6
- < div className = "container flex-full-centered" style = { { marginBottom : "var(--ifm-spacing-3xl)" } } >
7
- < ul className = "row" >
8
- { projectsDetails . map ( ( project , index ) => {
9
- return (
10
- < li className = "projects-list" key = { index } >
11
- < div className = "col" >
12
- < ProjectCard project = { project } />
13
- </ div >
14
- </ li >
15
- )
7
+ < div
8
+ className = {
9
+ "container flex-full-centered" + " " + styles . all_projects_container
10
+ }
11
+ >
12
+ < ul className = "row --no-gutters" >
13
+ { projectsDetails . map ( ( project , index ) => {
14
+ return (
15
+ < li className = "projects-list" key = { index } >
16
+ < div className = "col" style = { { paddingLeft : "0" } } >
17
+ < ProjectCard project = { project } />
18
+ </ div >
19
+ </ li >
20
+ ) ;
16
21
} ) }
17
22
</ ul >
18
23
</ div >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export default function ProjectCard({ project }): JSX.Element {
5
5
const base = `${ prefix } ${ project . name } `
6
6
return (
7
7
< div className = "container" >
8
- < div className = "row row--no-gutters horizontally-centered " >
8
+ < div className = "row row--no-gutters" >
9
9
< div
10
10
className = { "col col--6 col" + " " + styles . project_text }
11
11
>
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ div .project_title {
17
17
18
18
.project_description {
19
19
padding : var (--ifm-spacing-md ) var (--ifm-spacing-xl );
20
- text-align : center ;
20
+ text-align : justify ;
21
21
}
22
22
23
23
.project_description p {
@@ -26,6 +26,10 @@ div .project_title {
26
26
27
27
@media only screen and (max-width : 996px ) {
28
28
/*Mobile*/
29
+ .all_projects_container {
30
+ margin-bottom : var (--ifm-spacing-3xl );
31
+
32
+ }
29
33
30
34
.header_container {
31
35
padding-top : var (--ifm-spacing-2xl );
@@ -44,12 +48,12 @@ div .project_title {
44
48
font-weight : 400 ;
45
49
line-height : 20px ;
46
50
letter-spacing : 0.25px ;
47
- text-align : center ;
51
+ text-align : justify ;
48
52
margin-bottom : var (--ifm-spacing-lg );
49
- padding : var (--ifm-spacing-lg ) var (--ifm-spacing-2xl );
53
+ padding : var (--ifm-spacing-lg ) var (--ifm-spacing-xl );
50
54
}
51
55
52
- .col_project_text p {
56
+ .project_text {
53
57
background-color : white;
54
58
text-align : justify;
55
59
}
@@ -77,6 +81,10 @@ div .project_title {
77
81
78
82
@media only screen and (min-width : 996px ) {
79
83
/*Desktop*/
84
+
85
+ .all_projects_container {
86
+ margin : 0 0 var (--ifm-spacing-5xl ) 0 ;
87
+ }
80
88
.header_container {
81
89
margin-top : var (--ifm-spacing-6xl );
82
90
}
@@ -95,10 +103,6 @@ div .project_title {
95
103
padding : var (--ifm-spacing-lg ) var (--ifm-spacing-4xl );
96
104
}
97
105
98
- .header_text p {
99
- text-align : center;
100
- }
101
-
102
106
.project_text {
103
107
background-color : var (--ifm-color-orange-light );
104
108
padding : var (--ifm-spacing-4xl ) var (--ifm-spacing-3xl );
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export default function SpecialProjects() {
7
7
< div className = "main-container-with-margins" >
8
8
< div className = "container upper-container-with-margin-top" >
9
9
< div className = "row" >
10
- < div className = "col col--4 col--offset-2" >
10
+ < div className = { "col col--4 col--offset-2" } style = { { textAlign : "justify" } } >
11
11
< h2 > Special projects</ h2 >
12
12
< SpecialProjectsMD />
13
13
</ div >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export default function Support() {
11
11
< SupportIllustration height = { "280px" } alt = "Illustration for the support section, showing symbolically a person indicating the direction to take." />
12
12
</ div >
13
13
</ div >
14
- < div className = { "col col--6" } >
14
+ < div className = { "col col--6" } style = { { textAlign : "justify" } } >
15
15
< h2 > Professional Support</ h2 >
16
16
< SupportMD />
17
17
</ div >
Original file line number Diff line number Diff line change 92
92
93
93
ul {
94
94
padding-left : 0 ;
95
+ margin-left : 0 ;
95
96
}
96
97
97
98
.container {
211
212
line-height : 150% ;
212
213
line-height : 20px ;
213
214
letter-spacing : 0.25px ;
214
- text-align : center;
215
+ padding : 0 var ( --ifm-spacing-lg )
215
216
}
216
217
217
218
li {
297
298
margin : var (--ifm-spacing-2xl ) 0 ;
298
299
}
299
300
301
+
300
302
h1 {
301
303
color : var (--ifm-color-primary-p2 );
302
304
font-family : var (--ifm-font-family-bebas-neue );
@@ -637,10 +639,12 @@ a.menu__link:active {
637
639
.cards-list {
638
640
list-style-type : none;
639
641
padding : none;
642
+ margin-left : 0 ;
640
643
}
641
644
642
645
.projects-list {
643
646
list-style-type : none;
644
647
padding : none;
648
+ margin-left : 0 ;
645
649
width : 100% ;
646
- }
650
+ }
You can’t perform that action at this time.
0 commit comments