-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrainee_Project_1_Styles.css
More file actions
66 lines (63 loc) · 1.07 KB
/
Trainee_Project_1_Styles.css
File metadata and controls
66 lines (63 loc) · 1.07 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
/* General Styles */
.whiteText {
padding-top: 20px;
padding-bottom: 0px;
}
.whiteText > p {
margin: 0px;
}
.greenBox {
background-color: lightgreen;
overflow: auto;
}
.box {
background-color: ivory;
border: 3px solid tan;
width: 400px;
height: 200px;
}
.boxText > p {
margin: 0px;
}
/* Row One Styles */
.rowOne > .greenBox {
padding: 1% 12%;
}
.rowOne > .greenBox > .boxOne {
float: left;
}
.rowOne > .greenBox > .boxTwo {
float: right;
}
/* Row Two Styles */
.rowTwo > .greenBox {
padding: 1% 6%;
}
.rowTwo > .greenBox > .box {
display: inline-block;
background-color: lightblue;
}
.rowTwo > .greenBox > .boxThree {
margin: 0 6.5%;
}
.rowTwo > .greenBox > .boxFour {
margin: 0 6.5%;
}
/* Row Three Styles */
.rowThree > .greenBox {
position: relative;
height: 235px;
}
.rowThree > .greenBox > .box {
background-color: lightblue;
}
.rowThree > .greenBox > .boxFive {
position: absolute;
left: 12%;
top: 6%;
}
.rowThree > .greenBox > .boxSix {
position: absolute;
right: 12%;
top: 6%;
}