-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
52 lines (47 loc) · 856 Bytes
/
styles.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
html, body {
width: 100%;
height: 100%;
}
#print-shop-modal {
display: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 95%;
max-height: 95%;
width: 1000px;
height: 800px;
background: #FFFFFF;
border: 1px solid black;
}
#print-shop-modal__close-modal-btn {
width: 100%;
background: #FFFFFF;
border: none;
height: 40px;
font-size: 18px;
border-bottom: 1px solid grey;
text-align: right;
padding-right: 40px;
cursor: pointer;
}
#print-shop-modal__iframe {
width: 100%;
height: 100%;
border: none;
}
#image-to-use-input {
width: 100%;
max-width: 500px;
height: 40px;
font-size: 14px;
}
#buy-image-btn {
margin-top: 20px;
display: block;
width: 200px;
font-size: 16px;
height: 40px;
border: 1px solid black;
}