fixed title text alignment
This commit is contained in:
parent
aa5df8417c
commit
1961018420
2 changed files with 13 additions and 2 deletions
|
@ -74,7 +74,7 @@
|
||||||
<div class="faded overlay"></div>
|
<div class="faded overlay"></div>
|
||||||
<div id="attributions">
|
<div id="attributions">
|
||||||
<a href = 'https://itunes.apple.com/us/app/id903769553?mt=8'><b>iOS</b></a> <a href ='https://play.google.com/store/apps/details?id=com.hextris.hextris'><b>Android</b></a><br>
|
<a href = 'https://itunes.apple.com/us/app/id903769553?mt=8'><b>iOS</b></a> <a href ='https://play.google.com/store/apps/details?id=com.hextris.hextris'><b>Android</b></a><br>
|
||||||
By <a href="http://loganengstrom.com/" target="_blank">Logan Engstrom</a> & <a href='garrettdreyfus.github.io' target="_blank">Garrett Finucane</a>
|
<a href="http://loganengstrom.com/" target="_blank">Logan Engstrom</a> & <a href='garrettdreyfus.github.io' target="_blank">Garrett Finucane</a>
|
||||||
</div>
|
</div>
|
||||||
<div id='startBtn' ></div>
|
<div id='startBtn' ></div>
|
||||||
<div id="helpScreen" class = 'unselectable'>
|
<div id="helpScreen" class = 'unselectable'>
|
||||||
|
|
|
@ -255,12 +255,23 @@ and (max-device-width : 480px) {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
width:100%;
|
width:100%;
|
||||||
left: 0%;
|
left: 0%;
|
||||||
top: 80%;
|
|
||||||
text-align:center;
|
text-align:center;
|
||||||
font-size:1.25rem;
|
font-size:1.25rem;
|
||||||
z-index:98;
|
z-index:98;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (orientation:landscape) {
|
||||||
|
#attributions {
|
||||||
|
top: calc(50vh + 15vh);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (orientation:portrait) {
|
||||||
|
#attributions {
|
||||||
|
top: calc(50vh + 15vw);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen
|
@media only screen
|
||||||
and (min-device-width : 320px)
|
and (min-device-width : 320px)
|
||||||
and (max-device-width : 580px) {
|
and (max-device-width : 580px) {
|
||||||
|
|
Loading…
Reference in a new issue