Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtounet committed Mar 12, 2024
1 parent 30a6c87 commit dc1e183
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 8 deletions.
6 changes: 6 additions & 0 deletions sass/_section_apropos.sass
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ section#a-propos
grid-gap: 10px
justify-items: center

.flex-col-center

display: flex
flex-direction: column
align-items: center

.box
display: flex
flex-direction: row
Expand Down
5 changes: 5 additions & 0 deletions sass/dist/_section_apropos.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ section#a-propos #list-jobs {
grid-gap: 10px;
justify-items: center;
}
section#a-propos #list-jobs .flex-col-center {
display: flex;
flex-direction: column;
align-items: center;
}
section#a-propos #list-jobs .box {
display: flex;
flex-direction: row;
Expand Down
2 changes: 1 addition & 1 deletion sass/dist/_section_apropos.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion sass/dist/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ section#a-propos #list-jobs {
grid-gap: 10px;
justify-items: center;
}
section#a-propos #list-jobs .flex-col-center {
display: flex;
flex-direction: column;
align-items: center;
}
section#a-propos #list-jobs .box {
display: flex;
flex-direction: row;
Expand Down Expand Up @@ -275,10 +280,14 @@ header {
}
header div {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
align-items: center;
}
header div img#logo {
display: flex;
flex-direction: column;
align-items: center;
width: 32px;
height: 32px;
}
Expand Down Expand Up @@ -434,6 +443,7 @@ footer {
nav {
display: flex;
justify-content: space-between;
align-items: flex-end;
position: fixed;
top: 0px;
left: 100px;
Expand Down
2 changes: 1 addition & 1 deletion sass/dist/style.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions sass/style.sass
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,14 @@ header
z-index: 99
div
display: flex
flex-direction: column
justify-content: center
align-content: center
//align-items: center
align-items: center

img#logo
display: flex
flex-direction: column
align-items: center
width: $w-logo
height: $h-logo
h1
Expand Down Expand Up @@ -187,7 +191,6 @@ footer

/* Smartphone */
@media screen and (min-width: 576px)

/*Smartphone Paysage*/
@media screen and (min-width: 768px)
header
Expand All @@ -208,9 +211,9 @@ footer
height: 10vh

nav

display: flex
justify-content: space-between
align-items: flex-end
position: fixed
top: 0px
left: 100px
Expand Down Expand Up @@ -258,7 +261,6 @@ footer
// justify-content: center
@media screen and (min-width: 1135px)

main

#a-propos
Expand Down

0 comments on commit dc1e183

Please sign in to comment.