32 lines
687 B
CSS
32 lines
687 B
CSS
![]() |
.appbar-items {
|
||
|
font-size: 1.25rem;
|
||
|
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
||
|
font-weight: 500;
|
||
|
line-height: 1.6;
|
||
|
letter-spacing: 0.0075em;
|
||
|
}
|
||
|
|
||
|
.view > header {
|
||
|
transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||
|
box-shadow:
|
||
|
0px 2px 4px -1px rgba(0, 0, 0, 0.2),
|
||
|
0px 4px 5px 0px rgba(0, 0, 0, 0.14),
|
||
|
0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 100%;
|
||
|
box-sizing: border-box;
|
||
|
flex-shrink: 0;
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: auto;
|
||
|
right: 0;
|
||
|
color: rgba(0, 0, 0, 0.87);
|
||
|
z-index: 1302;
|
||
|
background-color: black;
|
||
|
}
|
||
|
.view > header > div > div > a {
|
||
|
height: 40px;
|
||
|
width: 40px;
|
||
|
}
|