Making a custom CSS per mobile

You need use the wp_is_mobile()

For example changing your style.css in the header.php

<?php
if ( wp_is_mobile() ) {
    /* Display and echo mobile specific stuff here */
}
?>