-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
70 lines (60 loc) · 1.08 KB
/
styles.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
61
62
63
64
65
66
67
68
69
70
body {
margin: 0;
background-color: rgb(221, 221, 221);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
h1 {
text-align: center;
background-color: white;
padding: 15px;
margin: 0px;
font-size: 3em;
}
img {
width: 700px;
height: 480px;
object-fit: cover;
}
#main-box {
display: flex;
justify-content: center;
margin-top: 50px;
margin-bottom: 50px;
}
.photo-card {
height: 600px;
width: 700px;
background-color: white;
}
.card-header {
height: 50px;
width: 700px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: #e3e3e3 1px solid;
}
.card-title {
margin-left: 10px;
}
.card-number {
margin-right: 10px;
color:rgb(150, 150, 150);
font-weight: 500;
}
.card-image {
height: 480px;
width: 700px;
display: flex;
align-items: center;
}
.card-footer {
height: 75px;
width: 700px;
border-top: #e3e3e3 1px solid;
display: flex;
align-items: flex-start;
}
.footer-text {
padding: 0 10px;
}