85 lines
1.2 KiB
Plaintext
85 lines
1.2 KiB
Plaintext
/* app css stylesheet */
|
|
|
|
page {
|
|
color: #333;
|
|
background-color: #ddd;
|
|
overflow: hidden;
|
|
}
|
|
|
|
button {
|
|
border: 0 solid #0010ae;
|
|
background-color: #1f2afe;
|
|
color: #fff;
|
|
font-size: 120%;
|
|
padding: 8px 16px;
|
|
outline-width: 0;
|
|
-webkit-appearance: none;
|
|
box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.screen {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding: 16px;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.contact {
|
|
position: relative;
|
|
padding: 16px;
|
|
background-color: #fff;
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.avatar {
|
|
position: absolute;
|
|
top: 16px;
|
|
left: 16px;
|
|
font-size: 0;
|
|
}
|
|
|
|
.name {
|
|
height: 65px;
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin-left: 30%;
|
|
}
|
|
|
|
.list {
|
|
padding-top: 8px;
|
|
padding-left: 32px;
|
|
}
|
|
|
|
.screen1 {
|
|
overflow-y: scroll;
|
|
padding: 0;
|
|
}
|
|
|
|
.screen1 .contact {
|
|
margin: 16px;
|
|
height: auto;
|
|
width: auto;
|
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.screen2-button {
|
|
display: block;
|
|
margin: 24px auto;
|
|
}
|
|
|
|
.paragraph {
|
|
-webkit-transition: transform ease-in-out 300ms;
|
|
transition: transform ease-in-out 300ms;
|
|
-webkit-transform: scale(0.6);
|
|
transform: scale(0.6);
|
|
}
|
|
|
|
.enter.paragraph {
|
|
transform: none;
|
|
} |