mirror of
https://gitlab.com/MrFry/qmining-page
synced 2026-04-29 11:47:37 +02:00
33 lines
410 B
CSS
33 lines
410 B
CSS
.warning {
|
|
color: white;
|
|
padding: 10px;
|
|
font-size: 26px;
|
|
text-align: center;
|
|
}
|
|
|
|
.title {
|
|
color: var(--text-color);
|
|
font-size: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.gitRepos {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
.gitRepos {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.gitRepos a {
|
|
margin: 0px 5px;
|
|
}
|
|
|
|
.gitRepos img {
|
|
width: 400px;
|
|
max-width: 90%;
|
|
}
|