-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (88 loc) · 1.41 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
* {
box-sizing: border-box;
}
.container {
font-family: Inter;
}
/*header*/
.header{
display: flex;
background-color: #F55A5A;
color: #FFF;
width: 100%;
height: 55px;
align-items: center;
justify-content: center;
margin-bottom: 40px;
}
.headerImage{
width: 22px;
height: 22px;
fill: #FFF;
margin-right: 8px;
}
.headerTitle{
text-align: center;
font-weight: 500;
letter-spacing: -0.5px;
font-size: 14px;
}
/*card*/
.card{
display:flex;
margin-left: 30px;
margin-bottom:20px;
align-items: center;
justify-content: center;
}
.cardInfo{
display:inline-block;
margin-left:15px;
}
.cardHeading{
display:inline-flex;
margin-top:16px;
}
.cardImage{
width: 125px;
height: 168px;
border-radius: 5px;
}
.cardMaps{
width: 7px;
height: 9.45px;
margin-right: 5px;
}
.cardLocation{
font-size: 10.24px;
font-weight: 400;
letter-spacing: 1.7px;
margin:auto;
}
.cardLink{
color: #918E9B;
font-size: 10.24px;
font-weight: 400;
text-decoration-line: underline;
margin-left:12px
}
.cardTitle{
font-size: 25px;
font-weight: 700;
margin-top:6px;
}
.cardDate{
font-size: 10px;
font-weight: 700;
}
.cardDescription{
font-size: 10.24px;
font-weight: 400;
line-height: 150%;
}
.cardLine{
width:100%;
display:flex;
margin:auto;
padding-top:0px;
}