-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (107 loc) · 2.35 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
*
{
padding: 0;
margin: 0;
}
:root{
--primary-color:black;
--secondary-color: rgb(119, 116, 116);
--tertiary-color: rgb(61, 58, 58);
--border-color:white;
}
.light-theme
{
--primary-color:white;
--secondary-color: rgb(194, 190, 190);
--tertiary-color: wheat;
--border-color:black;
}
header
{
/* background-color: rgb(61, 58, 58); */
background-color: var(--tertiary-color);
text-align: right;
}
#sun
{
width: 50px;
cursor: pointer;
margin-top: 20px;
margin-right: 50px;
}
.container
{
/* background-color: rgb(61, 58, 58); */
background-color: var(--tertiary-color);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.paintbox
{
/* background-color: black; */
background-color: var(--primary-color);
text-align: center;
/* width: 80vw;
height: 75vh; */
border-radius: 10px;
cursor:pointer;
}
.paintbox
{
/* box-shadow: 0 1px 20px 0 rgb(119, 116, 116) inset, 0 1px 20px 0 rgb(119, 116, 116),
0 1px 20px 0 rgb(119, 116, 116) inset, 0 1px 20px 0 rgb(119, 116, 116); */
box-shadow: 0 1px 20px 0 var(--secondary-color) inset, 0 1px 20px 0 var(--secondary-color),
0 1px 20px 0 var(--secondary-color) inset, 0 1px 20px 0 var(--secondary-color);
}
.tools
{
background-color: var(--tertiary-color);
display: flex;
justify-content: center;
align-items: center;
padding: 40px;
margin-top: 0;
}
.tools .color-feild
{
height: 40px;
width: 40px;
min-height: 40px;
min-width: 40px;
cursor: pointer;
display: inline-block;
box-sizing: border-box;
border: 1px solid var(--border-color) ;
border-radius: 50%;
text-align: center;
margin: 0 10px;
margin-top: 0%;
}
.tools .button
{
text-align: center;
width: 100px;
height: 40px;
cursor: pointer;
color:var(--border-color) ;
border: 2px solid var(--border-color);
border-radius: 15px;
background-color: var(--primary-color);
font-weight: bold;
margin: 0 10px;
}
.color-picker
{
text-align: center;
margin: 0 10px;
height: 50px;
cursor:pointer;
}
.pen-range
{
text-align: center;
margin: 0 10px;
cursor:pointer;
}