-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (61 loc) · 1.15 KB
/
styles.css
File metadata and controls
73 lines (61 loc) · 1.15 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
71
72
73
body {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background-color: lightgrey;
}
header {
margin-top: 20px;
font-family: "Times New Roman", Times, Serif;
}
h2 {
box-sizing: border-box;
width: auto;
color: orange;
background-color: blueviolet;
border-radius: 6px;
margin-bottom: 30px;"
}
main {
display: flex;
justify-content: space-evenly;
width: 80%;
margin-top: 20px;
}
p{
box-sizing: border-box;
width: 100%;
max-width: 300px;
border: solid 3px;
border-radius: 6px;
padding: 3px;
margin-top: 0px;
margin-bottom: 0px;
background-color: rgba(0, 0, 0, 1);
color: white;
}
footer {
margin-top: 20px;
background-color: gold;
border-radius: 6px;
font-size: large;
}
.column {
box-sizing: border-box;
width: 100%;
margin: 0 10px;
display: flex;
gap: 0px;
flex-direction: column;
align-items: center;
}
.column img {
box-sizing: border-box;
width: 100%;
height: 100%;
max-width: 300px;
max-height: 200px;
border: solid 3px;
border-radius: 6px;
}