-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (120 loc) · 2.01 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
116
117
118
119
120
body {
width: 100%;
height: 98vh;
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
background-image: linear-gradient(160deg, #0093e9 10%, #80d0c7 100%);
}
#canvas {
border: 2px solid #000;
border-radius: 8px;
background-color: rgb(0, 0, 0);
}
.title {
text-align: center;
margin-bottom: 20px;
margin-top: 20px;
font-size: 40px;
}
h2 {
text-align: center;
}
#wrapper {
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
width: 1250px;
height: 790px;
margin: auto;
}
.tools {
width: 1000px;
height: 50px;
border: 2px solid #000;
border-radius: 8px;
display: flex;
justify-content: space-around;
align-items: center;
}
.all-color {
margin-left: -45px;
display: flex;
justify-content: space-evenly;
align-items: center;
list-style: none;
gap: 20px;
}
#pick-color{
/* border: 1px solid black; */
border-radius: 5px;
width: 30px;
height: 30px;
}
label {
font-size: 20px;
font-weight: 600;
}
.color ,#eraser,#trash{
width: 30px;
height: 30px;
border-radius: 4px;
border: 2px solid #000;
}
.color:hover ,#eraser:hover ,#trash:hover{
border: 2px solid rgb(255, 255, 255);
}
.color-1 {
background-color: rgb(255, 0, 0);
}.color-2 {
background-color: rgb(0, 60, 255);
}.color-3 {
background-color: rgb(47, 121, 77);
}.color-4 {
background-color: rgb(255, 255, 255);
}.color-5 {
background-color: rgb(255, 251, 0);
}.color-6 {
background-color: rgb(240, 162, 220);
}
.fa-1x {
color: rgb(90, 90, 90);
position: relative;
top: 5px;
right: -5px;
color: rgb(0, 0, 0);
}
a .fa-solid {
color: rgb(29, 29, 29);
margin-left: 10px;
}
a .fa-solid:hover {
color: white;
}
.active {
transform: scale(1.2);
}
.links {
text-decoration: none;
}
.fa-brands:hover {
color: white;
}
.fa-github-square {
margin-left: -12px;
}
.link {
margin-top: -30px;
text-align: center;
}
h3 {
text-align: center;
margin-top: 5px;
}
@media (max-width:1250px) {
#wrapper{
width: 1000px;
}
}