mirror of
https://gitlab.com/fabinfra/fabinfra-theme.git
synced 2025-03-13 15:11:49 +01:00
59 lines
944 B
CSS
59 lines
944 B
CSS
/*main*/
|
|
main a {
|
|
color: var(--color-main-text);
|
|
text-decoration: none;
|
|
}
|
|
|
|
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 */
|
|
main .header-project .content{
|
|
display: flex;
|
|
|
|
padding-top: 5px;
|
|
margin-top: 10px;
|
|
max-height: 200px;
|
|
}
|
|
main .header-project .content .logo {
|
|
width: 200px;
|
|
margin-left: auto;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
main .header-project .content .logo img {
|
|
width: : 100%;
|
|
}
|
|
|
|
@media (max-width: 35em) {
|
|
main .header-project .content .logo {
|
|
display: none;
|
|
}
|
|
} |