forked from TheCodingDojo/webFun_css_plotting_your_blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.css
More file actions
63 lines (54 loc) · 1.04 KB
/
portfolio.css
File metadata and controls
63 lines (54 loc) · 1.04 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
*{
padding: 0px;
margin: 0px;}
.top-box{
background-color: lightgray;
width: 1000px;
}
.big-box{
background-color: rgb(72, 73, 73);
width: 1000px;
height: 1500px;
}
h1{
display: inline-block;
font-family: "Comic Sans MS";
}
h2{
display: block;
float: right;
}
img{
display: inline-block;
float: left;
}
.about-me{
border: solid black;
width: 500px;
height: 200px;
display: inline-block;
background-color: lightgray;
margin-left: 200px;
}
.left-box{
border: solid black;
background-color: lightgrey;
width: 317px;
height: 325px;
display: inline-block;
float: left;
}
.middle-box{
border: solid black;
background-color: lightgrey;
width: 317px;
height: 325px;
display: inline-block;
}
.right-box{
border: solid black;
background-color: lightgrey;
width: 317px;
height: 390px;
display: inline-block;
}