-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (92 loc) · 1.66 KB
/
styles.css
File metadata and controls
105 lines (92 loc) · 1.66 KB
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
body {
font-family: Arial, sans-serif;
background: #101010;
color: #fff;
text-align: center;
margin: 0;
padding: 40px;
}
h1 {
margin-bottom: 40px;
font-size: 2em;
}
.output-container {
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 30px;
}
canvas {
background: #1e1e1e;
border: 2px solid #555;
border-radius: 10px;
width: auto;
height: auto;
image-rendering: pixelated;
}
.input-area {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}
input {
padding: 10px;
font-size: 1em;
width: 300px;
border-radius: 5px;
border: none;
}
label[for="alignSelect"] {
font-size: 2em;
font-weight: bold;
color: #fff;
margin-right: 8px;
user-select: none;
}
#alignSelect {
padding: 10px;
font-size: 2em;
background-color: #2e7dd6;
color: white;
border-radius: 5px;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
#alignSelect:hover {
background-color: #4791e6;
}
button {
padding: 10px 20px;
font-size: 1em;
background-color: #2e7dd6;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition:cubic-bezier(0.39, 0.575, 0.565, 1);
}
button:hover {
background-color: #4791e6;
}
button:disabled {
background: #555;
cursor: default;
}
.colorInput{
height: 25pt;
width: 80px;
padding: 0px;
border-radius: 0px;
background: none;
}
#colorDiv{
display: none;
margin: 0 auto;
margin-top: 10px;
background: #1e1e1e;
border: 5px solid #555;
border-radius: 8px;
width: 260px;
}