-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (60 loc) · 960 Bytes
/
Copy pathstyles.css
File metadata and controls
60 lines (60 loc) · 960 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*CSS reset settings here*/
*{
margin: 0px;
padding: 0px;
}
#wrapper{
width: 1000px;
height: 630px;
background-color: silver;
margin: 10px;
padding: 20px 0px 0px 0px;
}
#header{
width: auto;
height: 100px;
background-color: green;
margin: 0px 20px 20px;
}
.red{
width: 303px;
height: 100px;
background-color: red;
display: inline-block;
margin: 0px 0px 20px 20px;
}
#blueContainer{
width: auto;
height: 100px;
background-color: blue;
margin: 0px 20px 20px;
}
.yellow{
width: 460px;
height: 80px;
background-color: yellow;
margin: 10px 0px 10px 10px;
display: inline-block;
}
#purpleContainer{
width: auto;
height: 240px;
background-color: purple;
margin: 0px 20px 20px;
}
.white{
width: 200px;
height: 100px;
background-color: white;
margin: 20px 20px 20px;
display: inline-block;
}
#right{
float:right;
}
#pink{
width: auto;
height: 80px;
background-color: pink;
margin: 0px 20px 20px;
}