-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
78 lines (68 loc) · 1.21 KB
/
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
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
html * {
font-family: Arial, Helvetica, sans-serif;
font-weight: 100;
}
body {
background: rgb(255, 229, 67);
background: linear-gradient(
290deg,
rgba(255, 229, 67, 1) 0%,
rgba(255, 83, 238, 1) 100%
);
}
input[type="file"] {
display: none;
}
canvas {
position: relative;
margin-top: 30px;
text-align: center;
z-index: 8;
}
.custom-file-upload {
position: absolute;
top: -45px;
border-radius: 15px;
background: rgba(255, 255, 255, 0.4);
display: inline-block;
padding: 6px 12px;
cursor: pointer;
}
#card {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
background: linear-gradient(to bottom right, blue, pink);
top: 10%;
left: 25%;
height: 650px;
width: 700px;
border-radius: 15px;
}
#img {
position: absolute;
visibility: hidden;
margin-top: 30px;
max-height: 80%;
max-width: 90%;
border-radius: 15px;
}
#caption {
width: 90%;
}
#caption > p {
margin: 0.25rem;
font-size: 1.5rem;
}
#watermark {
position: absolute;
bottom: 0;
right: 15px;
font-size: 0.75rem;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
#caption_sentence {
font-weight: bold;
font-family: cursive;
}