-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathstep-2.css
More file actions
54 lines (36 loc) · 1.09 KB
/
step-2.css
File metadata and controls
54 lines (36 loc) · 1.09 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
/* Step-2 You can assign padding to all sides of a container by using the padding shorthand property. */
.content-left {
padding: 20px 20px 20px 20px;
}
/* Step 2 You can assign padding to all sides of a container by using the padding shorthand property. */
.header {
padding: 20px 20px 20px 20px;
}
/* Step-2 One option to get the container to fill the parent container is to use width: auto; */
.profile-image-container {
background: #96F0F2;
width: auto;
height: 30%;
margin-bottom: 20px;
}
/* Step-2 One option to get the container to fill the parent container is to use width: auto; */
.profile-links-container {
background: #12F3F7;
width: auto;
height: 30px;
}
/* Step-2 You can either use float left to get this element to in the desired location. */
.logo-container {
background: light-blue;
color: white;
height: 100%;
width: 200px;
float: left;
}
/* Step-2 You can either use float right to get this element to in the desired location. */
.menu-container {
background: #4F4949;
height: 10%;
width: 200px;
float: right;
}