-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (67 loc) · 1.28 KB
/
styles.css
File metadata and controls
75 lines (67 loc) · 1.28 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
/* Reset and global styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
background-color: #f7f7f7;
padding: 20px;
color: #333;
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
color: #4A90E2;
text-align: center;
}
.upload-label {
display: inline-block;
background-color: #4A90E2;
color: #fff;
padding: 10px 20px;
font-size: 1.1em;
cursor: pointer;
border-radius: 5px;
margin-bottom: 20px;
text-align: center;
transition: background-color 0.3s;
}
.upload-label:hover {
background-color: #357ABD;
}
.canvas-container {
width: 100%;
max-width: 90%;
overflow-x: auto;
display: flex;
justify-content: center;
margin-top: 20px;
border: 2px solid #ddd;
border-radius: 8px;
background-color: #fff;
padding: 10px;
}
canvas {
width: 100%;
max-width: 800px;
border-radius: 8px;
}
button {
background-color: #4A90E2;
color: white;
padding: 10px 20px;
font-size: 1em;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
transition: background-color 0.3s;
}
button:hover {
background-color: #357ABD;
}