-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (63 loc) · 1.03 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: antiquewhite;
}
#heading {
margin: 10px;
padding: 5px;
text-align: center;
}
#container {
margin: 10px;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
height: 100vh;
width: 100vw;
}
#sketchPad {
background-color: #fff;
max-height: 80%;
max-width: 80%;
height: fit-content;
width: fit-content;
cursor: url("img/paint-Brush.cur"), auto;
display: flex;
flex-direction: column;
flex-wrap: wrap;
overflow: hidden;
border: 15px solid #DDCFBB;
border-radius: 10px;
}
#sketchPad:active {
cursor: url("img/paint-Brush.cur"), auto;
}
.column {
display: flex;
}
.row {
display: flex;
flex-wrap: wrap;
padding: 10px;
transition: 0.3s;
}
.resetBtn {
padding: 10px;
width: 100px;
border: none;
border-radius: 5px;
background-color: #4285f4;
color: #fff;
font-size: 14px;
font-weight: 700;
cursor: pointer;
}
.resetBtn:hover {
background-color: #699ff6;
}