-
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
·37 lines (26 loc) · 969 Bytes
/
step-1.css
File metadata and controls
executable file
·37 lines (26 loc) · 969 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
/* Step-1.1 You don't need to put a position on this element because it is already at the top of the screen */
.header {
width: 100%;
height: 100px;
background: #D8D8D8;
}
/* Step-1.2 I would suggest using float to get this container in its desired location*/
.content-left {
width: 33.3%;
/*this height is a placeholder. You will need to make some adjustments to get this container to look like the design */
height: 100px;
background: #565555;
}
/* Step-1.3 I would suggest using float to get this container in its desired location. */
.content-mid {
width: 66.3%;
/*this height is a placeholder. You will need to make some adjustment to get this container to look like the design */
height: 100px;
background: #B0B0B0;
}
/* Step-1.4 you're going to want to add a positioning property to get this container to the bottom of the screen */
.footer {
width: 100%;
height: 100px;
background: #3A3A3A;
}