-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (89 loc) · 1.41 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (89 loc) · 1.41 KB
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
*{
margin: 0;
padding: 0;
}
.nav{
width: 20%;
height: 30%;
position: fixed;
top: 15%;
left: 2%;
display: inline;
align-items: center;
justify-content: space-around;
opacity: .3;
transition: opacity .5s;
transform: scale(1.1);
}
.nav:hover{
opacity: 1;
}
.clr{
height: 40px;
width: 40px;
background-color: blue;
border-radius: 50%;
border: 3px solid rgb(214, 214, 214);
transition: transform .5s;
}
.clr:hover{
transform: scale(1.2);
}
.clr:nth-child(1){
background-color: #FF0000;
}
.clr:nth-child(2){
background-color: #FFA500;
}
.clr:nth-child(3){
background-color: #FFFF00;
}
.clr:nth-child(4){
background-color: #24d102;
}
.clr:nth-child(5){
background-color: #0000FF;
}
.clr:nth-child(5){
background-color: #0000FF;
}
.clr:nth-child(6){
background-color: #4B0082;
}
.clr:nth-child(7){
background-color: #8F00FF;
}
.clr:nth-child(8){
background-color: #000;
}
.clr:nth-child(9){
background-color: #fff;
}
input {
width: 100;
height: 30;
}
button{
border: none;
outline: none;
padding: 1em;
color: #fff;
transform: scale(.9);
}
button:hover{
transform: scale(1);
}
.thickBtn{
background-color: #d83a35;
margin: 4% 2% 0% 0%;
}
.opaBtn{
background-color: #ff8800;
}
.clear{
background-color: #03bb56;
margin: 18% 2% 0% 0%;
}
.save{
background-color: #0f65d4;
}