-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (85 loc) · 1.54 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
body{
text-align: center;
background: url(back.jpg) center center fixed;
background-size: cover;
}
.header{
color: white;
background: linear-gradient(black,purple);
font-size: 36px;
height: 100px;
width: 600px;
margin: 0 auto;
margin-top: -40px;
}
.maincontainer{
width: 200px;
margin: 0 auto;
}
.input{
height: 30px;
font-size: 1.3em;
}
#size{
height: 3px;
width: 3px;
border-radius: 50%;
background: black;
margin: 0 auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
#slider{
margin: 10px auto;
}
#thicknessinput{
position: relative;
}
.container{
height: 400px;
width: 1400px;
background-color: white;
margin: 10px auto;
margin-top: 0px;
cursor: crosshair;
border: 2px solid black;
}
.butinputs{
height: 80px;
display: flex;
width: 600px;
margin: 0 auto;
justify-content: space-around;
}
#paint{
background-color: #fff;
cursor: crosshair;
}
.input2{
height: 40px;
width: 100px;
background-color: purple;
color: white;
font-size: 2em;
display: flex;
float: left;
border-radius: 10%;
padding: 10px;
text-align: center;
}
.buttons{
cursor: pointer;
}
.input2:hover{
background-color: white;
color: purple;
}
.buttons:active{
top: 4px;
}
.eraseMode{
background-color: red;
color: white;
}