-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (97 loc) · 1.88 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
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
*{
font-family: 'Roboto', sans-serif;
background-color: #402dc0;
color: whitesmoke;
}
h1{
text-align: center;
font-size: 30pt;
}
canvas{
border: 1px solid lightgray;
width: 500px;
height: 300px;
}
#canvasCont, #fgFileChoose, #bgFileChoose, #buttons-sliders{
text-align: center;
margin: 20px;
}
#slider-style{
margin: 20px;
}
#slider{
-webkit-appearance: none;
appearance: none;
height: 2px;
width: 20%;
background-color: #494949;
outline: none;
opacity: 0.5;
-webkit-transition: .2s;
transition: opacity .2s;
}
#slider:hover{
opacity: 1;
}
label{
display: inline-block;
padding: 8px 12px;
cursor: pointer;
border-radius: 4px;
background-color: #30bb5aa2;
font-size: 16px;
color: #fff;
}
input[type="file"] {
position: absolute;
z-index: -1;
top: 6px;
left: 0;
font-size: 15px;
color: rgb(153,153,153);
}
#fgFileChoose, #bgFileChoose{
position: relative;
}
#compositeBtn{
background-color: #a7ff83; /* Green */
border-radius: 6px;
border: none;
color: black;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
#clearBtn{
background-color: #17b978; /* Green */
border-radius: 6px;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
#downloadBtn{
background-color: #086972;
border-radius: 6px;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}