Update all non-major dependencies
[ProtonMail-WebClient.git] / applications / pdf-ui / src / style.css
bloba50b4244d67a8066781477c88fd981ec12ee0393
1 :root {
2 font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3 line-height: 1.5;
4 font-weight: 400;
6 font-synthesis: none;
7 text-rendering: optimizeLegibility;
8 -webkit-font-smoothing: antialiased;
9 -moz-osx-font-smoothing: grayscale;
10 -webkit-text-size-adjust: 100%;
13 * {
14 box-sizing: border-box;
17 body {
18 margin: 0;
21 button {
22 display: inline-block;
23 padding: 8px 16px;
24 border: 1px solid var(--button-default-border-color, transparent);
25 border-radius: 8px;
26 outline: none;
27 background-color: #6d4aff;
28 color: white;
29 text-align: center;
30 cursor: pointer;
31 transition: 0.15s cubic-bezier(0.22, 1, 0.36, 1), background-position 0s;
34 button:hover {
35 background-color: #6243e6;
37 button:active {
38 background-color: #573bcc;
41 .app-bar {
42 background-color: #1b1340;
43 color: white;
44 padding: 0px 12px;
45 display: flex;
46 align-items: center;
47 justify-content: space-between;