mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 06:04:55 -06:00
64 lines
No EOL
1 KiB
CSS
64 lines
No EOL
1 KiB
CSS
body {
|
|
font-family: 'Fira Sans', sans-serif;
|
|
}
|
|
h2 {
|
|
text-align: center;
|
|
}
|
|
a, a:active, a:visited {
|
|
color: #017C9A;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.btn, .btn:visited {
|
|
background-color: #017C9A;
|
|
border-color: #017C9A;
|
|
color: #fff;
|
|
}
|
|
.atc-header {
|
|
background-color: #DCDCB0;
|
|
padding: 1rem 0;
|
|
}
|
|
.atc-header h1 {
|
|
font-weight: 800;
|
|
font-size: 2.4rem;
|
|
padding: 0;
|
|
margin:0;
|
|
display: inline-block;
|
|
}
|
|
.logo {
|
|
margin-right: 10px;
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
.btn.join {
|
|
width: 50%;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
.screens {
|
|
margin-top: 2rem;
|
|
}
|
|
.screens img {
|
|
max-height: 288px;
|
|
margin-top: 1rem;
|
|
border: 1px #017C9A solid;
|
|
}
|
|
|
|
@media (max-width : 576px) {
|
|
h2 {
|
|
font-size: 1.8rem;
|
|
text-align: center;
|
|
}
|
|
.atc-header h1 {
|
|
font-size: 1.6rem;
|
|
}
|
|
.btn.join {
|
|
width: 100%;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
.screens img {
|
|
max-height: 180px;
|
|
}
|
|
} |