-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
78 lines (70 loc) · 1.1 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
canvas{
display: block;
margin: 10px auto 0px;
border: 2px solid black;
position: relative;
bottom: 40px;
}
button{
border: 0 ;
outline: 0;
}
#colors button{
width: 40px;
height: 40px;
border: 0.1px solid black;
border-radius: 30px;
}
#colors button:hover{
opacity: 0.5;
}
#black{
background:black;
}
#blue{
background: #0000ff;
}
#red{
background: red;
}
#yellow{
background: #ffff66;
}
#green{
background: #4ca64c;
}
#misc button{
width: 110px;
height: 50px;
border: 2px solid white;
border-radius: 40px;
position: relative;
left: 250px;
bottom: 45px;
color: white;
background: #b30000;
font-size: 22px;
}
#misc button:hover{
opacity: 0.5;
}
#pen-width{
position: relative;
right: 50px;
top: 13px;
}
.down{
position: relative;left:260px;bottom: 45px;
}
a:link, a:visited {
background-color: blue;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 40px;
}
a:hover, a:active {
opacity: 0.5;
}