-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboid.css
More file actions
43 lines (43 loc) · 751 Bytes
/
boid.css
File metadata and controls
43 lines (43 loc) · 751 Bytes
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
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0px;
}
input {
border: 1px solid #5295CA;
text-align: center;
color: #5295CA;
width: 100%;
}
#canvas-wrap, #boxes{
width: 100%;
}
#canvas-wrap {
height: 100%;
}
#boxes {
display: flex;
-webkit-box-direction: normal;
-webkit-box-orient: horizontal;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
-webkit-box-align: center;
align-items: center;
position: absolute;
top: 0;
}
#control {
background-color: #fff;
display: inline-block;
width: 250px;
margin: 1px;
}
#label {
background-color: #5295CA;
color: #fff;
text-align: center;
height: 40px;
padding: 3px;
}