-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.css
115 lines (100 loc) · 1.65 KB
/
app.css
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
body {
background-color: #222;
font-family: Arial, "Helvetica Neue";
margin: 0;
padding: 0;
}
/* 1st screen */
#select_folder {
text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
text-align: center;
margin: 0 auto;
position: relative;
width: 16em;
top: 40%;
padding: 1em;
background: #FF582E;
border-radius: 2em;
border: solid 1px #FF582E;
color: white;
}
#select_folder:hover {
box-shadow: 0px 0px 20px #FF582E;
cursor: pointer;
}
#folderSelector, #photoSaver {
display: none;
}
#photos {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
.photo {
text-align: center;
float: left;
margin: 2%;
padding: 1% 0.5%;
background-color: white;
width: 20%;
height: 18%;
margin-bottom: 1%;
cursor: pointer;
}
.photo img, #fullViewPhoto img, #fullViewPhoto canvas {
max-width: 100%;
max-height: 100%;
}
#fullViewPhoto {
text-align: center;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: #222;
z-index: 2;
display: none;
}
#toolbar {
width: 96%;
z-index: 2;
position: absolute;
top: 0;
padding: 2%;
background: rgba(0,0,0,0.7);
color: white;
opacity: 0;
}
#toolbar:hover {
opacity: 1;
}
.button {
text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
background: rgba(255,255,255,0.2);
border: solid 2px white;
border-radius: 2em;
padding: 5px 15px;
margin: 5px;
cursor: pointer;
}
#filterLabel {
padding: 0.5em;
float: left;
}
.filter img {
float: left;
width: 45px;
height: 30px;
cursor: pointer;
border: solid 1px white;
margin: 0em 0.25em;
}
#back, #save {
float: right;
}
.button:hover, .filter img:hover {
background: rgba(255,255,255,0.3);
box-shadow: 0px 0px 20px rgba(255,255,255,0.6);
}