25 lines
349 B
CSS
25 lines
349 B
CSS
body {
|
|
padding: 1em;
|
|
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: #00B7FF;
|
|
}
|
|
|
|
#mobile-view {
|
|
max-width: 20em;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flat-content {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.send-to-right {
|
|
margin-left: auto;
|
|
} |