-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (67 loc) · 1.21 KB
/
style.css
File metadata and controls
70 lines (67 loc) · 1.21 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{
padding: 5rem;
} */
.container{
position: relative;
width: 700px;
height: 900px;
top: 0;
left: 0;
background-color: lightblue;
}
.house {
position: absolute;
margin-top: 150px;
top: 50px;
left: 50px;
width: 500px;
height: 400px;
background-color: burlywood;
border: 2px solid black;
}
.roof {
position: absolute;
top: -150px;
left: 0;
width: 0;
height: 0;
border-left: 250px solid transparent;
border-right: 250px solid transparent;
border-bottom: 148px solid brown;
}
.chimney {
position: absolute;
width: 50px;
height: 140px;
top: -145px;
left: 350px;
background-color: brown;
border: px solid brown;
}
.window1 {
position: absolute;
width: 100px;
height: 100px;
top: 145px;
left: 50px;
background-color: lightyellow;
border: 3px solid black;
}
.window2 {
position: absolute;
width: 100px;
height: 100px;
top: 145px;
right: 50px;
background-color: lightyellow;
border: 3px solid black;
}
.door {
position: absolute;
width: 100px;
height: 250px;
bottom: 0;
left: 200px;
background-color: peru;
border: 3px solid black;
}