File size: 999 Bytes
343e5a8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.tools-menu {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tool-button {
    background-color: #f0f0f0;
    border: none;
    padding: 10px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tool-button img {
    width: 24px;
    height: 24px;
}

.tool-button:hover {
    background-color: #e0e0e0;
}

.brush-size-slider {
    margin: 0 10px;
    width: 100px;
}

.brush-size-slider::-webkit-slider-thumb {
    background-color: #00aaff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
}

.brush-size-slider::-webkit-slider-runnable-track {
    background-color: #cccccc;
    height: 4px;
    border-radius: 2px;
}