File tree Expand file tree Collapse file tree 6 files changed +26
-41
lines changed Expand file tree Collapse file tree 6 files changed +26
-41
lines changed Original file line number Diff line number Diff line change @@ -7,22 +7,14 @@ import Avatar from "./Avatar";
7
7
8
8
export function Distinction ( { person } ) {
9
9
if ( person . distinctionTitle . length !== 0 ) {
10
- return (
11
- < ul >
12
- { person . distinctionTitle . map ( ( distinction , index ) => (
13
- < li className = "cards-list" key = { index } >
14
- < div >
15
- < div >
16
- < Link href = { person . distinctionLink [ index ] } >
17
- < DistinctionIcon />
18
- { distinction }
19
- </ Link >
20
- </ div >
21
- </ div >
22
- </ li >
23
- ) ) }
24
- </ ul >
25
- ) ;
10
+ return person . distinctionTitle . map ( ( distinction , index ) => (
11
+ < div >
12
+ < Link href = { person . distinctionLink [ index ] } >
13
+ < DistinctionIcon className = { styles . distinction_icon } />
14
+ { distinction }
15
+ </ Link >
16
+ </ div >
17
+ ) ) ;
26
18
} else return < div > </ div > ;
27
19
}
28
20
export default function LargePortraitCard ( { person } ) {
@@ -31,20 +23,10 @@ export default function LargePortraitCard({ person }) {
31
23
< div className = { "container" } >
32
24
< div className = { "row padding-none" } >
33
25
< div className = "col col--12 col--offset-1" >
34
- < div
35
- className = {
36
- styles . large_card_complete_name
37
- }
38
- >
26
+ < div className = { styles . large_card_complete_name } >
39
27
{ person . completeName }
40
28
</ div >
41
- < div
42
- className = {
43
- styles . large_card_position
44
- }
45
- >
46
- { person . position }
47
- </ div >
29
+ < div className = { styles . large_card_position } > { person . position } </ div >
48
30
</ div >
49
31
</ div >
50
32
< div className = "row" >
Original file line number Diff line number Diff line change @@ -128,6 +128,11 @@ div .join_the_team_text {
128
128
width : 160px ;
129
129
}
130
130
131
+ .distinction_icon {
132
+ vertical-align : middle;
133
+ padding-right : 5px ;
134
+ }
135
+
131
136
@media only screen and (max-width : 996px ) {
132
137
/*Mobile*/
133
138
.value_card {
Original file line number Diff line number Diff line change 6
6
}
7
7
.hero_container {
8
8
background-color : var (--ifm-color-primary-p0 );
9
+ padding-bottom : var (--ifm-spacing-3xl );
9
10
}
10
11
11
12
.table_with_8_customers {
Original file line number Diff line number Diff line change @@ -36,9 +36,8 @@ div .topics_header {
36
36
}
37
37
38
38
@media only screen and (min-width : 996px ) {
39
-
40
39
.header {
41
- color : var (--ifm-color-blue-jupyter );
40
+ color : var (--ifm-color-primary-p2 );
42
41
}
43
42
44
43
.projects_link {
@@ -51,9 +50,8 @@ div .topics_header {
51
50
52
51
.whatwedo_container {
53
52
background-color : var (--ifm-color-primary-p1 );
54
- padding : var (--ifm-spacing-4xl ) var (--ifm-spacing-2xl ) 0
53
+ padding : var (--ifm-spacing-3xl ) var (--ifm-spacing-2xl ) 0
55
54
var (--ifm-spacing-2xl );
56
- /*margin-top: var(--ifm-spacing-3xl);*/
57
55
}
58
56
59
57
.topics_card {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export default function AllProjects() {
8
8
< ul className = "row" >
9
9
{ projectsDetails . map ( ( project , index ) => {
10
10
return (
11
- < li className = "cards -list" key = { index } >
11
+ < li className = "projects -list" key = { index } >
12
12
< div className = "col" >
13
13
< ProjectCard project = { project } />
14
14
</ div >
Original file line number Diff line number Diff line change 11
11
--ifm-color-grey-condaforge : # 7a7865 ;
12
12
--ifm-color-orange-light : # fef9ec ;
13
13
--ifm-color-indigo-i1 : rgb (79 , 82 , 255 );
14
- --ifm-color-primary-p0 : # FFFBD7 ;
14
+ --ifm-color-primary-p0 : # fffbd7 ;
15
15
--ifm-color-primary-p1 : # f6f195 ;
16
16
--ifm-color-primary-p2 : # 1c1c16 ;
17
17
--ifm-text-color-on-primary-p1 : # 1e1c00 ;
@@ -161,13 +161,6 @@ ul {
161
161
}
162
162
}
163
163
164
- /*@media (min-width: 1880px) {
165
- .row {
166
- width: 1600px;
167
- }
168
- }*/
169
-
170
-
171
164
/****** Class that are specific for smaller screens*/
172
165
@media (max-width : 996px ) {
173
166
.main-container-with-margins {
@@ -646,3 +639,9 @@ a.menu__link:active {
646
639
list-style-type : none;
647
640
padding : none;
648
641
}
642
+
643
+ .projects-list {
644
+ list-style-type : none;
645
+ padding : none;
646
+ width : 100% ;
647
+ }
You can’t perform that action at this time.
0 commit comments