mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2024-11-22 11:41:29 -08:00
43 lines
568 B
CSS
43 lines
568 B
CSS
|
.App {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.attachment-full {
|
||
|
position: absolute;
|
||
|
right: 0px;
|
||
|
height: 149px;
|
||
|
width: 149px;
|
||
|
}
|
||
|
|
||
|
.githubLabel {
|
||
|
background-color: #00293C;
|
||
|
border: none;
|
||
|
width: 149px;
|
||
|
height: 0px;
|
||
|
position: absolute;
|
||
|
right: 0px;
|
||
|
margin-top: -10px;
|
||
|
}
|
||
|
|
||
|
@media (orientation: portrait) {
|
||
|
.attachment-full {
|
||
|
height: 99px;
|
||
|
width: 99px;
|
||
|
}
|
||
|
|
||
|
.githubLabel {
|
||
|
width: 99px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (orientation: landscape) and (max-height: 400px) {
|
||
|
.attachment-full {
|
||
|
height: 99px;
|
||
|
width: 99px;
|
||
|
}
|
||
|
|
||
|
.githubLabel {
|
||
|
width: 99px;
|
||
|
}
|
||
|
}
|