Adjusted size of status bar and text for small devices (for example an iPhone 5)
This commit is contained in:
parent
b3b8a10d92
commit
cfab901f09
5 changed files with 68 additions and 32 deletions
30
src/App.vue
30
src/App.vue
|
@ -87,6 +87,28 @@
|
|||
background-color: #E94A47;
|
||||
}
|
||||
|
||||
/* slightly smaller font for very small devices */
|
||||
@media screen and (max-width: 330px) {
|
||||
body {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
}
|
||||
|
||||
/* regular font for devices wider than 330px */
|
||||
@media screen and (min-width: 330px) {
|
||||
body {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 0.9em;
|
||||
}
|
||||
}
|
||||
|
||||
/* div element used to center a button or multiple buttons */
|
||||
.button-wrapper {
|
||||
text-align: center;
|
||||
|
@ -101,13 +123,5 @@
|
|||
font-style: normal;
|
||||
font-weight: normal;
|
||||
line-height: 1.35em;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.fade-enter-active, .fade-leave-active {
|
||||
transition: opacity .5s;
|
||||
}
|
||||
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
||||
opacity: 0;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -39,14 +39,6 @@
|
|||
background: #e94a47;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*.bottom-aligned {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
border: 1px solid black;
|
||||
}*/
|
||||
</style>
|
||||
|
||||
<template>
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
margin: 0 auto;
|
||||
padding: 5%;
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#title {
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
</script>
|
||||
|
||||
<style scoped>
|
||||
/* set the applications app to 600 when viewed on desktop (width more than 906) */
|
||||
@media screen and (min-width: 906px) {
|
||||
.questionnaire {
|
||||
width: 600px;
|
||||
|
@ -46,10 +47,41 @@
|
|||
}
|
||||
}
|
||||
|
||||
/* adjust the status bar for very thin devices (for example iPhone 5) */
|
||||
@media screen and (max-width: 330px) {
|
||||
.progress {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.point {
|
||||
width: 0.35em;
|
||||
height: 0.35em;
|
||||
}
|
||||
|
||||
#back-button {
|
||||
width: 2em;
|
||||
}
|
||||
}
|
||||
|
||||
/* regular status bar for devices wider than 330px */
|
||||
@media screen and (min-width: 330px) {
|
||||
.progress {
|
||||
margin-top: 0.7em;
|
||||
}
|
||||
|
||||
.point {
|
||||
width: 0.5em;
|
||||
height: 0.5em;
|
||||
}
|
||||
|
||||
#back-button {
|
||||
width: 2.5em;
|
||||
}
|
||||
}
|
||||
|
||||
#back-button {
|
||||
position: absolute;
|
||||
margin-left: 2%;
|
||||
width: 2.5em;
|
||||
float: left;
|
||||
|
||||
}
|
||||
|
@ -62,7 +94,6 @@
|
|||
}
|
||||
|
||||
.progress {
|
||||
margin-top: 0.7em;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
|
@ -71,8 +102,6 @@
|
|||
|
||||
.point {
|
||||
margin: 0.2em;
|
||||
width: 0.5em;
|
||||
height: 0.5em;
|
||||
border-radius: 50%;
|
||||
background: transparent;
|
||||
border: 2px solid #23286b;
|
||||
|
|
Loading…
Reference in a new issue