-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (43 loc) · 942 Bytes
/
style.css
File metadata and controls
49 lines (43 loc) · 942 Bytes
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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #1e1e1e;
color: #f0f0f0;
text-align: center;
margin: 0;
padding: 20px;
}
header, main, footer {
max-width: 1200px;
margin: 0 auto 20px auto;
}
h1 {
color: #00eaff;
}
#canvas-container {
margin-top: 20px;
border: 2px dashed #444;
padding: 10px;
display: inline-block; /* Keeps border snug with canvas */
}
/* Style for the buttons and file input created by p5.js */
button, input {
padding: 10px 15px;
font-size: 16px;
border: 2px solid #00eaff;
background-color: #2a2a2a;
color: #f0f0f0;
cursor: pointer;
margin: 5px;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
button:hover, input:hover {
background-color: #00eaff;
color: #1e1e1e;
}
button:disabled {
border-color: #555;
color: #777;
cursor: not-allowed;
background-color: #222;
}