-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (83 loc) · 1.41 KB
/
Copy pathstyle.css
File metadata and controls
84 lines (83 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin: 60px;
}
.container {
max-width: 600px;
margin: 0 auto;
}
h1 {
margin-bottom: 10px;
font-size: 1.8em;
}
#filePDF {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 5px;
width: 100%;
}
#submitBtn {
padding: 10px;
background-color: #6b79f0;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
/** disabled submit button */
#submitBtn:disabled {
background-color: #ddd;
color: #aaa;
cursor: not-allowed;
}
#output {
margin-top: 20px;
padding: 10px;
border: 1px solid #ddd;
background-color: #f9f9f9;
white-space: pre-wrap;
overflow: hidden;
}
#carousel-container {
margin-top: 20px;
overflow: hidden;
position: relative;
}
#carousel,
#carousel-imgs {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
margin-bottom: -1px;
}
.page {
flex: 0 0 auto;
width: 100%;
scroll-snap-align: start;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
margin-right: 10px;
box-sizing: border-box;
text-align: left;
}
.arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 1.5em;
cursor: pointer;
color: #6b79f0;
}
.arrow-left {
left: 0;
}
.arrow-right {
right: 0;
}