-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (52 loc) · 795 Bytes
/
style.css
File metadata and controls
52 lines (52 loc) · 795 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
44
45
46
47
48
49
50
51
52
*{
box-sizing: border-box;
}
body{
background-color: #ccc;
font-family: sans-serif;
}
button{
width: 30%;
padding: 1rem;
background-color: #333;
color: #fff;
font-weight: bold;
cursor: pointer;
margin: 5px 0px;
}
.center-txt{
text-align: center;
}
.container{
max-width: 1280px;
margin: auto;
}
.row{
display: flex;
flex-wrap: wrap;
}
.col-6{
width: 50%;
flex: 0 0 auto;
}
.col-12{
width: 100%;
flex: 0 0 auto;
}
#elevator{
position: relative;
}
.floor{
height: 50px;
border-right: 5px solid blue;
border-top: 5px solid blue;
}
#shaft{
width: 200px;
background-color: darkred;
height: 10px;
position: absolute;
bottom: 0px;
right: -100px;
transition: all 500ms ease-in-out;
}