mirror of
https://github.com/Floriansylvain/portfolio.git
synced 2026-08-19 19:53:18 +02:00
61 lines
776 B
CSS
61 lines
776 B
CSS
#content > div {
|
|
padding: 50px 20%;
|
|
}
|
|
|
|
.article-content {
|
|
padding: 50px !important;
|
|
}
|
|
|
|
#about img {
|
|
width: 225px;
|
|
height: 225px;
|
|
}
|
|
|
|
.block {
|
|
max-width: 900px;
|
|
margin: 50px auto;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.block > p {
|
|
margin: 25px 50px;
|
|
padding: 0;
|
|
font-size: larger;
|
|
}
|
|
|
|
header {
|
|
transform: none;
|
|
padding: 10px;
|
|
}
|
|
|
|
header:hover {
|
|
opacity: 100% !important;
|
|
transform: none;
|
|
}
|
|
|
|
.hamburger {
|
|
display: none;
|
|
}
|
|
|
|
nav {
|
|
width: 100%;
|
|
gap: 25px;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
nav a {
|
|
opacity: 100%;
|
|
transform: none;
|
|
}
|
|
|
|
nav a:hover {
|
|
opacity: 100%;
|
|
transform: none;
|
|
}
|
|
|
|
#education p + p, #experience p + p {
|
|
font-size: medium;
|
|
} |