-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (52 loc) · 876 Bytes
/
style.css
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
/* style.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1rem 0;
font-size: 1.5rem;
}
main {
display: flex;
justify-content: space-around;
margin: 20px;
}
article {
border: 1px solid #ccc;
padding: 1rem;
border-radius: 5px;
width: 30%;
background-color: #f9f9f9;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
article h1 {
font-size: 1.2rem;
color: #333;
}
article p {
color: #666;
}
footer {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1rem 0;
margin-top: 20px;
}
#develop{
background-color: yellow;
}
<<<<<<< HEAD
#jelle{
background-color: blue;
=======
#joop{
background-color: bisque;
>>>>>>> joop
}