forked from itscodenation/int-u2l5-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (46 loc) · 765 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
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #4caf50;
color: white;
padding: 10px;
text-align: center;
}
nav {
margin: 10px;
}
nav a {
color: white;
padding: 10px;
text-decoration: none;
}
section {
padding: 20px;
}
h1, h2 {
color: #555;
}
ul {
list-style-type: circle;
}
footer {
background-color: #eee;
padding: 10px;
text-align: center;
}
#facts {
background-color: #fafafa;
}
#dino-image {
width: 100%;
max-width: 600px;
display: block;
margin: 10px auto;
border: 5px solid #4caf50;
border-radius: 10px;
}