File tree 9 files changed +44
-29
lines changed
9 files changed +44
-29
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 ;
142
- width : 264 px ;
143
- padding : var (--ifm-spacing-xl ) var (--ifm-spacing-lg );
141
+ height : 420 px ;
142
+ width : 280 px ;
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,8 +194,8 @@ 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 ;
193
- width : 264 px ;
197
+ height : 460 px ;
198
+ width : 300 px ;
194
199
padding : var (--ifm-spacing-2xl ) var (--ifm-spacing-lg );
195
200
border-radius : 8px ;
196
201
box-shadow : 0px 0px 8px 1px # c8c8c7 ;
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
2
import ProjectCard from "./ProjectCard" ;
3
+ import styles from "./styles.module.css" ;
3
4
4
5
export default function AllProjects ( ) {
5
6
return (
6
7
< div
7
- className = "container flex-full-centered"
8
- style = { { marginBottom : "var(--ifm-spacing-3xl)" } }
8
+ className = {
9
+ "container flex-full-centered" + " " + styles . all_projects_container
10
+ }
9
11
>
10
12
< ul className = "row --no-gutters" >
11
13
{ projectsDetails . map ( ( project , index ) => {
12
14
return (
13
- < li
14
- className = "projects-list"
15
- key = { index }
16
-
17
- >
15
+ < li className = "projects-list" key = { index } >
18
16
< div className = "col" style = { { paddingLeft : "0" } } >
19
17
< ProjectCard project = { project } />
20
18
</ div >
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ 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
- className = { "col col--6 col" + " " + styles . project_text }
10
+ className = { "col col--6 col col--offset-1 " + " " + styles . project_text }
11
11
>
12
12
< div className = { styles . project_title } > { project . title } </ div >
13
13
< div className = { styles . project_description } >
Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ div .project_title {
25
25
26
26
@media only screen and (max-width : 996px ) {
27
27
/*Mobile*/
28
+ .all_projects_container {
29
+ margin-bottom : var (--ifm-spacing-3xl );
30
+
31
+ }
28
32
29
33
.header_container {
30
34
padding-top : var (--ifm-spacing-2xl );
@@ -43,14 +47,14 @@ div .project_title {
43
47
font-weight : 400 ;
44
48
line-height : 20px ;
45
49
letter-spacing : 0.25px ;
46
- text-align : center ;
50
+ text-align : justify ;
47
51
margin-bottom : var (--ifm-spacing-lg );
48
- padding : var (--ifm-spacing-lg ) var (--ifm-spacing-2xl );
52
+ padding : var (--ifm-spacing-lg ) var (--ifm-spacing-xl );
49
53
}
50
54
51
- .col_project_text p {
55
+ .project_text {
52
56
background-color : white;
53
- text-align : center ;
57
+ text-align : justify ;
54
58
}
55
59
56
60
.project_picture_jupyter {
@@ -76,6 +80,10 @@ div .project_title {
76
80
77
81
@media only screen and (min-width : 996px ) {
78
82
/*Desktop*/
83
+
84
+ .all_projects_container {
85
+ margin : 0 0 var (--ifm-spacing-5xl ) 0 ;
86
+ }
79
87
.header_container {
80
88
margin-top : var (--ifm-spacing-6xl );
81
89
}
@@ -94,10 +102,6 @@ div .project_title {
94
102
padding : var (--ifm-spacing-lg ) var (--ifm-spacing-4xl );
95
103
}
96
104
97
- .header_text p {
98
- text-align : justify;
99
- }
100
-
101
105
.project_text {
102
106
background-color : var (--ifm-color-orange-light );
103
107
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
ul .row {
@@ -215,7 +216,7 @@ ul.row {
215
216
line-height : 150% ;
216
217
line-height : 20px ;
217
218
letter-spacing : 0.25px ;
218
- text-align : center;
219
+ padding : 0 var ( --ifm-spacing-lg )
219
220
}
220
221
221
222
li {
@@ -301,6 +302,7 @@ ul.row {
301
302
margin : var (--ifm-spacing-2xl ) 0 ;
302
303
}
303
304
305
+
304
306
h1 {
305
307
color : var (--ifm-color-primary-p2 );
306
308
font-family : var (--ifm-font-family-bebas-neue );
@@ -648,4 +650,4 @@ a.menu__link:active {
648
650
list-style-type : none;
649
651
padding : none;
650
652
width : 100% ;
651
- }
653
+ }
You can’t perform that action at this time.
0 commit comments