-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
108 lines (88 loc) · 1.3 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
.preview {
font-size: 15px;
padding: 10px;
background-color: #F1F1F1;
}
.footer-format{
background-color: #222;
color: #f1f3ed;
padding: 10px;
}
#inputSize{
position: relative;
top: 10%;
}
label{
font-size: 20px;
padding : 8px;
color: white;
}
select{
position: relative;
top: 10%;
padding: 8px;
}
.array{
display: flex;
position: relative;
margin: auto;
}
.cell{
font-size: 36px;
margin: 5px;
padding: 10px;
background-color: #eee;
color: #222;
border: 5px solid #eee;
border-radius: 5px;
position: relative;
transition: all .4s ease-in;
}
.cell.referenced{
background-color: #9CEC5B;
border-color: #9CEC5B;
color: white;
transition: all .4s ease-out;
}
.cell.compared{
border-color: #50C5B7;
background-color: #50C5B7;
color: white;
transition: all .4s ease-out;
}
.cell.done{
border-color: #6184D8;
background-color: #6184D8;
color: white;
transition: .5s;
}
.cell.m-right{
animation-name: m-right;
animation-duration: 1s;
}
.cell.m-left{
animation-name: m-left;
animation-duration: 1s;
}
@keyframes m-right{
0%{
left: 0%;
}
33%{
left: 0;
}
100%{
left: 90px;
}
}
@keyframes m-left{
0%{
right: 0%;
}
33%{
right: 0;
}
100%{
right: 90px;
}
}