-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (72 loc) · 1.38 KB
/
style.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
body {
font-family: 'Amazon Ember', sans-serif;
font-weight: 700;
background-color: #f5f5f5;
}
.container {
max-width: 600px;
margin-top: 50px;
text-align: center;
}
h2 {
color: #ff9900; /* AWS orange color */
}
#posterCanvas {
border: 3px solid #232f3e; /* AWS dark color */
display: none; /* Hide canvas initially */
width: 100%;
max-width: 600px;
height: auto;
margin-top: 1rem;
}
#imageUpload {
display: block;
margin: 1rem auto;
}
.btn-custom {
background-color: #ff9900;
color: white;
border: none;
}
.btn-custom:hover {
background-color: #e68a00;
}
#downloadBtn, #shareBtn {
display: none; /* Hide buttons initially */
margin-top: 1rem;
}
#shareTextContainer {
margin-top: 1.5rem;
text-align: left;
}
#shareText {
resize: none;
width: 100%;
min-height: 200px;
font-family: 'Amazon Ember', sans-serif;
font-size: 0.9rem;
padding: 10px;
margin-top: 0.5rem;
border: 1px solid #ddd;
border-radius: 5px;
}
.btn-copy {
margin-top: 0.5rem;
display: inline-block;
width: 100%;
}
/* Footer styling */
footer {
margin-top: 3rem;
padding: 1rem;
text-align: center;
font-size: 0.9rem;
color: #777;
}
.instruction-box {
font-weight: 500;
background-color: #f8f9fa; /* Light gray background */
border: 1px solid #dee2e6; /* Subtle border color */
border-radius: 8px; /* Rounded corners */
display: none;
}