-
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
·70 lines (53 loc) · 1.36 KB
/
step-1.css
File metadata and controls
executable file
·70 lines (53 loc) · 1.36 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
63
64
65
66
67
68
69
70
.body {
font-family: monospace ;
}
.header {
width: 100%;
height: 100px;
background: #D8D8D8;
font-size: 1.5rem;
font-weight: 600;
text-align: center;
line-height: 100px;
}
/* Use float to get this container in its desired location. */
.content-left {
width: 34%;
/* This height is a placeholder. You will need to make some adjustments to get this container to look like the design. */
background: #565555;
float: left;
height: 830px;
color: #FFFEFF;
font-size: 1.7rem;
text-align: center;
font-weight: 700;
}
/* Use float to get this container in its desired location. */
.content-mid {
width: 66%;
/* This height is a placeholder. You will need to make some adjustments to get this container to look like the design. */
height: 800px;
background: #B0B0B0;
float: right;
font-size: 1.1rem;
font-weight: 400;
text-align: center;
}
/* Use float to get this container to the bottom of the screen */
.footer {
width: 100%;
height: 100px;
background: #D8D8D8;
position: absolute;
bottom: 0px ;
font-size: 1.5rem;
font-weight: 600;
text-align: center;
color: #101010;
line-height: 100px;
margin-bottom: 0px;
}
/* Use float to get this container in its desired location. */
.content-left {
height: 830px;
}