-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (48 loc) · 832 Bytes
/
Copy pathstyle.css
File metadata and controls
55 lines (48 loc) · 832 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
body {
margin: 20px;
font-family: sans-serif;
}
h3 {
color: blue;
padding: 5px;
margin: 5px;
border-bottom: solid 1px black;
}
p {
color: grey;
}
strong {
color: black;
}
/* Hieronder de vormgeving van de elementen op de pagina die door loops aangepast worden */
.blokjes {
width: 100px;
height: 100px;
margin-top: 50px;
margin: 10px;
display: inline-block;
background: #000;
}
.balletjes {
width: 100px;
height: 100px;
border-radius: 50%;
margin-top: 50px;
margin: 10px;
display: inline-block;
background: #000;
}
#landschap {
background: rgb(222, 178, 81);
min-height: 100px;
padding: 20px;
}
.groene_driehoek {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid rgb(35, 139, 53);
display: inline-block;
margin: 10px;
}