-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (100 loc) · 1.73 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
110
111
112
113
114
115
/* General Styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
width: 100%;
font-family: 'Poppins', sans-serif;
background-color: #2c2f33;
color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.main-container {
width: 90vw;
max-width: 1200px;
padding: 20px;
border-radius: 10px;
background-color: #23272a;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
overflow: auto;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.header h1 {
color: #ffffff;
font-weight: 600;
}
.status {
font-size: 14px;
}
.row {
display: flex;
gap: 20px;
}
.canvas-column {
width: 80%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.side-panel {
width: 20%;
background-color: #2f3136;
padding: 15px;
border-radius: 8px;
overflow-y: auto;
}
h3 {
color: #ffffff;
font-weight: 600;
margin-bottom: 10px;
}
/* Canvas Styling */
canvas {
background-color: #1e2228;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
}
/* Button Styling */
button {
background-color: #7289da;
color: #ffffff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
margin-bottom: 10px;
width: 100%;
}
button:hover {
background-color: #5a6bb2;
transform: translateY(-3px);
}
button:active {
transform: translateY(0);
}
/* Input and Label Styling */
input[type="checkbox"] {
accent-color: #7289da;
}
label {
margin-left: 8px;
font-size: 14px;
}