25 lines
322 B
CSS
25 lines
322 B
CSS
|
|
/* styles used in the setup and activation views */
|
||
|
|
|
||
|
|
.container {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
height: 100%;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
margin-top: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.view {
|
||
|
|
margin: 60px 0;
|
||
|
|
width: 100%;
|
||
|
|
max-width: 500px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.view code {
|
||
|
|
background-color: transparent;
|
||
|
|
cursor: copy;
|
||
|
|
}
|