-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathstep-1.css
More file actions
executable file
·63 lines (49 loc) · 1.08 KB
/
step-1.css
File metadata and controls
executable file
·63 lines (49 loc) · 1.08 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
/* Step-1.1 */
.main-top-section {
width: 100%;
height: 375px;
background: #F7F1E7;
position: relative;
}
.top-header {
width: 100%;
height: 70px;
text-align: center;
background: #D8D8D8;
}
/* Step-1.2 You need to get all of these elements to line up side by side. What display property would do this for you? */
/* Step-1.2 You will also need t add a position property to the logo and sign in the containers */
.menu {
width: 100px;
height: 40px;
display: inline-block;
position: absolute;
left: 10px;
top: 10px;
background: #536A63;
}
.logo {
width: 300px;
height: 40px;
display: inline-block;
margin-top: 10px;
background: #536A63;
}
.sign-in {
width: 100px;
height: 40px;
display: inline-block;
position: absolute;
right: 10px;
top: 10px;
background: #536A63;
}
/* Step-1.3 Make this container overhang off its parent container. */
.bottom-container {
width: 60%;
height: 60px;
position: absolute;
bottom: -30px;
left: 22%;
background: #536A63;
}