-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
112 lines (95 loc) · 1.85 KB
/
styles.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
109
110
111
112
* {
box-sizing: border-box;
font-family: 'Arimo', sans-serif;
}
h1 {
margin: 40px 3.33% 0 3.33%;
text-align: center;
}
.app-container {
display: flex;
flex-direction: column;
}
.canvas-container {
height: calc(100vh - 320px);
margin: 20px 3.33% 0 3.33%;
border: 2px solid black;
box-shadow: 4px 4px 0px 0px #222222;
}
.array-visual {
display: flex;
justify-content: center;
align-items: center;
height: 100px;
}
.array-cell {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
margin: 5px 5px 5px 5px;
background-color: white;
border: 2px solid black;
border-radius: 5px;
box-shadow: 4px 4px 0px 0px #222222;
text-align: center;
transition: all 0.2s ease-in-out;
}
.array-cell.touched {
background-color: coral;
transform: translateY(-10px);
}
.settings-container {
height: 160px;
margin: 20px 3.33% 20px 3.33%;
border: 2px solid black;
box-shadow: 4px 4px 0px 0px #222222;
}
.commands {
margin: 20px 20px 20px 20px;
}
.button-container {
display: flex;
justify-content: center;
align-items: center;
margin: 10px 10px 10px 10px;
}
.insert-container {
text-align: center;
width: 300px;
}
#insert-input {
width: 50px;
height: 30px;
border: 2px solid black;
text-align: center;
font-weight: 600;
}
#insert-button {
width: 100px;
height: 30px;
margin: 10px 10px 10px 10px;
border: 2px solid black;
}
#insert-error {
height: 30px;
}
.remove-container {
text-align: center;
width: 300px;
}
#remove-button {
width: 100px;
height: 30px;
margin: 10px 10px 10px 10px;
border: 2px solid black;
}
#remove-error {
height: 30px;
}
button {
text-decoration: none !important;
background: none;
box-shadow: 4px 4px #222222;
}