mirror of
https://github.com/run-llama/pdf-viewer.git
synced 2026-07-01 21:34:02 -04:00
61 lines
957 B
CSS
61 lines
957 B
CSS
body {
|
|
margin: 0;
|
|
background-color: #525659;
|
|
font-family:
|
|
Segoe UI,
|
|
Tahoma,
|
|
sans-serif;
|
|
}
|
|
|
|
.Example input,
|
|
.Example button {
|
|
font: inherit;
|
|
}
|
|
|
|
.Example header {
|
|
background-color: #323639;
|
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
|
|
padding: 20px;
|
|
color: white;
|
|
}
|
|
|
|
.Example header h1 {
|
|
font-size: inherit;
|
|
margin: 0;
|
|
}
|
|
|
|
.Example__container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin: 10px 0;
|
|
padding: 10px;
|
|
}
|
|
|
|
.Example__container__load {
|
|
margin-top: 1em;
|
|
color: white;
|
|
}
|
|
|
|
.Example__container__document {
|
|
width: 100%;
|
|
max-width: calc(100% - 2em);
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.Example__container__document .react-pdf__Document {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.Example__container__document .react-pdf__Page {
|
|
margin: 1em 0;
|
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.Example__container__document .react-pdf__message {
|
|
padding: 20px;
|
|
color: white;
|
|
}
|