-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (80 loc) · 1.53 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
body {
display: flex;
flex-direction: column;
align-items: center;
margin: 0px;
font-family: 'Courier New', Courier, monospace;
color: #F9D342;;
background-color: #292826;
}
#container {
background-color: white;
padding: 2%;
}
h1, h2 {
margin: 1%;
}
p {
margin: 0;
margin: 0 15% 0 15%;
}
.buttons {
margin: 2%;
}
button {
padding: 0.2rem 2rem 0.2rem 2rem;
font-family: 'Proxima N W01 Bold', Arial, sans-serif;
color: #292826;
border: none;
border: 0.1rem #F9D342 solid;
}
button:hover{
transform: scale(1.08);
}
.rainbowPen {
background-color: #cdedfd;
background-image: linear-gradient(319deg, #cdedfd 0%, #ffec82 37%, #ffcfd2 100%);
}
.blackPen {
background-color: black;
color: #F9D342;
}
#eraser , #clear {
background-color: #F9D342;
color: #292826;
}
#clear {
background-color: white;
}
#gridSize {
margin: 2%;
}
.slider{
margin-bottom: 2%;
}
input[type="range"] {
-webkit-appearance: none;
width: 200px;
height: 7px;
border-radius: 5px;
background-image: linear-gradient(#F9D342, #F9D342);
background-repeat: no-repeat;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
height: 20px;
width: 20px;
border-radius: 50%;
background: #F9D342;
cursor: ew-resize;
box-shadow: 0 0 2px 0 #555;
transition: background .3s ease-in-out;
}
.octocat {
width: 2rem;
height: 2rem;
}
.link {
color: #F9D342;
text-decoration: underline;
}