-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
124 lines (97 loc) · 1.91 KB
/
styles.css
File metadata and controls
124 lines (97 loc) · 1.91 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
background-color: #7BDFF2;
}
.navbar {
background-color: #B2F7EF;
}
.navbar-expand .navbar-nav .nav-link {
color: #412850;
padding: 0 0.65rem;
font-size: 1.15rem;
}
.navbar-expand .navbar-nav .nav-link:hover{
color: #14AECC;
}
.navbar-expand .navbar-nav .nav-link:focus {
border: none;
box-shadow: none;
outline: 0;
}
.navbar-expand .navbar-nav .nav-link:focus-visible{
border: 1px solid #008296;
box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
outline: 0;
}
main {
background-color: #EFF7F6;
}
#canvasContainer {
height: 40vh;
background-color: #BCF4F5;
padding: 1%;
}
#canvas {
height: 100%;
width: 100%;
display: flex;
align-items: flex-end;
}
#auxCanvasContainer {
transition: height 500ms ease-out;
height: 0;
width: 75%;
background-color: #BCF4F5;
}
#auxCanvasContainer.visible {
height: 30vh;
width: 75%;
background-color: #BCF4F5;
padding: 1%;
}
#auxCanvas {
height: 100%;
width: 100%;
display: flex;
align-items: flex-end;
}
.array-element {
background-color: #5DD48E;
border-right: 1px solid #B2F7EF;
opacity: 0.60;
}
.compared-element {
background-color: #1AB2B8;
opacity: 0.60;
}
.swap-element {
background-color: #14868A;
opacity: 0.60;
}
.active-slice {
opacity: 1;
}
.controlBtn {
background-color: #fff;
border: 1px solid #d5d9d9;
color: #0f1111;
box-shadow: 0 0 5px 2px rgba(213, 217, 217, .5);
width: 48%;
}
.controlBtn:hover {
background-color: #f7fafa;
}
.controlBtn:focus {
border-color: #008296;
box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
outline: 0;
}
.focusable:focus {
border: 1px solid #008296;
box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
outline: 0;
}
.focusable:focus-visible {
border-color: #008296;
box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
outline: 0;
}