-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
117 lines (101 loc) · 2.03 KB
/
Copy pathmain.css
File metadata and controls
117 lines (101 loc) · 2.03 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@font-face {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
src: url("GillSans.ttc");
}
#leftBorder {
position: absolute;
background-color: black;
width: 3px;
height: 660px;
}
ul {
list-style-type: none;
}
ul input {
width: 180px;
height: 180px;
}
#imageList {
position: absolute;
top: 40px;
height: 550px;
width: 250px;
overflow: hidden;
overflow-y: scroll;
left: 4px;
}
#addImageButtonDiv {
position: absolute;
left: 110px;
bottom: 20px;
}
#addImageButton {
height: 40px;
width: 40px;
}
#addImageButton:hover {
-webkit-filter: drop-shadow(1px 1px 1px rgb(204, 204, 204));
filter: drop-shadow(1px 1px 1px rgb(204, 204, 204));
}
#middleSeparator {
position: absolute;
background-color: black;
width: 3px;
height: 660px;
left: 260px;
}
#rightBorder {
position: absolute;
background-color: black;
width: 3px;
height: 661px;
right: 8px;
}
#topBorder {
position: absolute;
background-color: black;
width: 982px;
height: 3px;
}
#extractedText {
position: absolute;
left: 280px;
top: 28px;
font-size: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#bottomBorder {
position: absolute;
background-color: black;
width: 983px;
height: 3px;
bottom: 8px;
}
#bottomButtonArea {
position: absolute;
background-color: black;
width: 730px;
height: 3px;
bottom: 75px;
right: 8px;
}
#copyToClipboardButton {
position: absolute;
background-color: #55ff99;
color: black;
border: none;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
left: 260px;
top: 10px;
transition: 0.23s;
}
#copyToClipboardButton:hover {
background-color: #2aff80;
color: white;
box-shadow: 1px 1px 1px 1px rgb(204, 204, 204);
}