Nope.
LRB, stop hijacking threads, plz.
LRB, stop hijacking threads, plz.
Hypocrisy is not welcome hereNope.
LRB, stop hijacking threads, plz.
>ARM supportLike I said, .NET Core was a bit of bust, due to a hardware issues, and Mono doesn't help matters either. I've ported the entire template to Revel web framework, written in Go. Which will give me a reason to finally learn it, finally. Go has had ARM support for a while in Linux.
AEM v8, v7, v4, and v5.>ARM support
ARMv7?
The top one's a tablet, isn't it?I hate mobile fallback on "smart"phones.
Yup.The top one's a tablet, isn't it?
I wish they'd just make tablet devices use desktop webpages by default, especially since tablets are really powerful nowadays >.< there are some with 3, 4GB of RAM in some cases. Sure, I understand why phones display different ones, but tablets? Nah.Yup.
Visit the site now, it now responds better to portrait mode but there is only so much I can do in the layout's present state. Also I hate it when websites nag you for the app version."please, rotate to landscape"
More like irresponsible web design. If I saw that on my screen, I'll be like: NO, PLEASE FIX YOUR CSS, DUMBASS. And then I'd quit the website, unless I was desperate to look for something there. Just like I do with these sick "PLEASE INSTALL OUR APP, NOBODY WANTS TO DO THAT SO WE HAVE TO NAG YOU WITH A HUGE OVERLAY FILLING YOUR ENTIRE SCREEN" boxes, when I'm browsing websites on my phone.
How are you doing that anyway? By hiding the block with content and showing this warning if window width is smaller than [something]? I wonder if you could hit that by simply multitasking on a laptop/tablet. That would be a really bad UX.
#warning-message { display: none; }
@media only screen and (orientation:portrait){
#main { display:none; }
#warning-message { display:block; font-size: 40px; }
}
@media only screen and (orientation:landscape){
#warning-message { display:none; }
}
Do you have a phone?Simple change, makes stuff magically look better in portrait mode. You can throw your warning away now.
/* ------ Adaptive ------ */
#warning-message { display: none; }
@media only screen and (orientation:portrait){
#wrapper{
align: center;
width: 90%;
font-size:1.9em;
}
}
/* ------ Adaptive ------ */
@media only screen and (orientation:portrait){
#menu_wrapper{
font-size: 30px;
height: 100px;
}
#rbmenu li a {
height: 99%;
padding: 30px 5px;
}
}