2020-09-24 17:05:45 +02:00
|
|
|
/*main*/
|
|
|
|
main a {
|
|
|
|
color: var(--color-main-text);
|
2021-12-15 17:51:37 +00:00
|
|
|
text-decoration: underline;
|
2020-09-24 17:05:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
main a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*list item for projects*/
|
|
|
|
main .list-project .item {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
padding-top: 5px;
|
|
|
|
margin-top: 10px;
|
|
|
|
max-height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .list-project .logo {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .list-project .logo img {
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .list-project .content {
|
|
|
|
text-align: left;
|
|
|
|
margin-left: 10px;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* project sites */
|
2020-09-25 22:24:06 +02:00
|
|
|
main .header-project .content {
|
2020-09-24 17:05:45 +02:00
|
|
|
padding-top: 5px;
|
|
|
|
margin-top: 10px;
|
2020-09-25 22:24:06 +02:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2020-09-24 17:05:45 +02:00
|
|
|
}
|
|
|
|
main .header-project .content .logo {
|
2020-09-25 22:24:06 +02:00
|
|
|
align-self: center;
|
|
|
|
height: 200px;
|
2020-09-24 17:05:45 +02:00
|
|
|
}
|
|
|
|
|
2020-09-25 22:24:06 +02:00
|
|
|
/* Change Grid Structure */
|
|
|
|
@media (max-width: 30em) {
|
|
|
|
main .header-project .content {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2020-09-24 17:05:45 +02:00
|
|
|
|
|
|
|
main .header-project .content .logo {
|
2020-09-25 22:24:06 +02:00
|
|
|
align-self: center;
|
|
|
|
width: 200px;
|
2020-09-24 17:05:45 +02:00
|
|
|
}
|
2020-09-25 22:24:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* images */
|
|
|
|
.text-justify img {
|
|
|
|
display: block;
|
|
|
|
margin: 50px auto;
|
2021-12-15 17:51:37 +00:00
|
|
|
}
|