-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (54 loc) · 966 Bytes
/
style.css
File metadata and controls
60 lines (54 loc) · 966 Bytes
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
.btn-group {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 15px;
}
.btn {
padding: 8px 14px;
border: 1px solid black;
background-color: lightblue;
cursor: pointer;
transition: background 0.2s ease;
}
.btn.active {
background: black;
color: white;
}
#photoContainer {
width: 500px;
height: 333px;
margin: 20px auto;
border: 4px solid black;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
transition: width 0.3s ease; /* smooth resize of container */
}
#photo {
height: 100%;
width: auto;
display: block;
transition: opacity 0.2s ease;
}
#photo.hidden {
opacity: 0;
}
#textDialog .text-dialog {
display: grid;
gap: 10px;
min-width: 280px;
}
#textDialog label {
display: grid;
gap: 6px;
font-size: 14px;
}
#textDialog menu {
display: flex;
justify-content: flex-end;
gap: 10px;
margin: 0;
padding: 0;
}