-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (47 loc) · 922 Bytes
/
styles.css
File metadata and controls
55 lines (47 loc) · 922 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
/* I found https://developer.mozilla.org very useful for all the informations
about HTML and CSS */
h3 {
font-family:sans-serif;
border: 2px solid blue;
border-radius: 5px;
padding: 5px;
width: 200px;
background-color: #80b3ff;
}
.card {
border: 3px solid blue;
border-radius: 5px;
width: 305px;
padding: 10px;
margin: 10px;
box-shadow: 5px 8px 5px blue;
background-color: #1a75ff;
}
.image {
width: 300px;
border: 2px solid blue;
border-radius: 5px;
}
.item {
border: 2px solid blue;
border-radius: 5px;
padding: 10px;
text-align: justify;
background-color: #003d99;
}
.fact {
font-style: italic;
font-family: sans-serif;
}
span {
font-weight: bold;
font-family: sans-serif;
}
.features {
font-family: sans-serif;
list-style-type: none;
padding-left: 0px;
}
.description {
font-family: sans-serif;
}