-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (73 loc) · 1.18 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (73 loc) · 1.18 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
background-color: #ced9ea;
}
#main {
}
/* <-- header --> */
.header {
}
/* <-- container --> */
.container {
width: 1320px;
margin: auto;
}
img {
max-width: 100%;
}
a {
text-decoration: none;
/* color: #464646; */
}
.row {
display: flex;
flex-wrap: wrap;
}
.col {
flex-basis: 25%;
padding: 0 15px;
}
/* style card */
.card {
background-color: #fff;
margin-bottom: 30px;
}
.image {
height: 220px;
}
.image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.content {
/* padding: 15px; */
margin: 16px 24px 0;
}
.content h3 {
color: #464646;
font-size: 19px;
font-weight: 400;
height: 20px;
/* margin-bottom: 16px; */
}
.content p {
color: #757575;
font-size: 14px;
font-weight: 100;
margin-bottom: 16px;
}
.content p span {
color: #ffd600;
}
.info {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
/* <-- footer --> */