-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathstep-2.css
More file actions
61 lines (43 loc) · 1.2 KB
/
step-2.css
File metadata and controls
61 lines (43 loc) · 1.2 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
/* Step-2 You can assign padding to all sides of a container by using the padding shorthand property. */
.content-left {
padding:20px;
}
/* Step 2 You can assign padding to all sides of a container by using the padding shorthand property. */
.header {
padding: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: 60%;
margin-bottom: 20px;
}
/* Step-2 You can either use float left to get this element to in the desired location. */
.logo-container {
background: #4F4949;
width:6%;
height:100%;
float: right;
}
/* Step-2 You can either use float right to get this element to in the desired location. */
.menu-container {
background: #4F4949;
width:30%;
height: 100%;
float: left;
}
position:absolute;
bottom:0;
color: white;
text-align: center;
font-size: 35px;
font-weight: 600;
line-height: 100px;