-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (45 loc) · 832 Bytes
/
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
.box {
display: flex;
justify-content: center;
align-items: center;
width: 100px;
height: 100px;
background-color: black;
margin-left: 100px;
}
.left{
width: 0px;
height: 100px;
color: aliceblue;
background-color: wheat;
transition: width 3s ease;
}
.expand {
width: 0px;
}
button{
background-color: black;
color: white;
width:70px;
}
.perFloor{
display: flex;
flex-direction: column;
height: 100px;
}
.elevators{
display: flex;
white-space: nowrap;
margin-top: -22px;
}
.single-floor{
height: 120px;
}
.line{
height: 4px;
width:1000%;
overflow-x: auto;
background-color: black;
margin-top: 14px;
z-index: +2;
}